二分答案
酒酿小河桃
这个作者很懒,什么都没留下…
展开
-
luoguP1314 codevs1138 聪明的质监员
最重要的还是看出线性关系吧 有单调性和数据范围大概可以想到二分 再写个前缀和就ok 每次写都找不出bug… #include #define maxn 200001 #define Inf 1e9 using namespace std; typedef long long LL; template void read(T &x){ x=0;int f=1;char ch=getcha原创 2017-09-18 14:51:34 · 503 阅读 · 0 评论 -
codevs1217 luogu1083 借教室
现在看题都是一眼暴力的啊 暴力真的会出奇迹 真的是想不到二分 顶多想想线段树但是不会敲【T^T 45分纯暴力 #include #define maxn 100001 using namespace std; template void read(T &x){ x=0;int f=1;char ch=getchar(); for(;!isdigit(ch);ch=g原创 2017-09-17 20:53:55 · 204 阅读 · 0 评论 -
codevs4748 luogu2678 跳石头
经典的二分答案 #include #define maxn 500010 using namespace std; template void read(T &x){ x=0;int f=1;char ch=getchar(); for(;!isdigit(ch);ch=getchar())if(ch=='-')f=-1; for(;isdigit(ch);ch=getchar())x=原创 2017-09-17 20:16:05 · 545 阅读 · 0 评论