摘要:
http://codeforces.com/contest/368/problem/C从左向右记录从1位置到每一个位置上x,y,z的个数。然后判断在l,r区间内的x,y,z的关系满不满足abs(x-y) 2 #include 3 #include 4 #define maxn 200000 5 ... 阅读全文
摘要:
http://codeforces.com/contest/368/problem/B从后往前找一遍就可以。 1 #include 2 #include 3 #include 4 #define maxn 200000 5 using namespace std; 6 7 int dp[ma... 阅读全文
摘要:
http://codeforces.com/contest/366/problem/E|x1-x2|+|y1-y2|有四种情况1.-(x1-x2)+(y1-y2);2.(x1-x2)-(y1-y2);3.-(x1-x2)-(y1-y2);4.(x1-x2)+(y1-y2);可以先把没一个数的坐标分为... 阅读全文