摘要:
http://acm.hdu.edu.cn/showproblem.php?pid=1828View Code 1 #include <cstdio> 2 #include <algorithm> 3 using namespace std; 4 const int N=20100; 5 struct segtree 6 { 7 int l,r,s,c,vl,vr,vs; 8 int m() { 9 int ans=(l+r)/2;10 if (ans*2>l+r) ans--;11 return ans;12 }13 ...
阅读全文