2022年5月30日

Codeforces Round #703 (Div. 2)

摘要: B 思路:结论题,如果点是奇数,这个点只能为1 否则等于中间最短点之间的差值+1 #include<stdio.h> #include<math.h> #include<string.h> #include<ctype.h> #include<iostream> #include<algorithm 阅读全文

posted @ 2022-05-30 20:22 zesure 阅读(30) 评论(0) 推荐(0) 编辑

树状数组笔记

摘要: lowbit:保留数在2进制下最后一个1,前面全变0 模板1:单点修改,区间查询 # include <bits/stdc++.h> using namespace std; typedef long long ll; int n[500009]; int t,k; int lowbit(int m 阅读全文

posted @ 2022-05-30 20:17 zesure 阅读(19) 评论(0) 推荐(0) 编辑

导航