摘要: http://acm.timus.ru/problem.aspx?space=1&num=1019 1 #include 2 #include 3 #include 4 #define maxn 200100 5 using namespace std; 6 7 struct node 8 { 9 int r,l,co; 10 }tree[maxn*4]; 11 int co[maxn],l[maxn],r[maxn]; 12 struct node1 13 { 14 int x,y,co; 15 }p[maxn*4]; 16 17 void bui... 阅读全文
posted @ 2014-03-26 19:04 null1019 阅读(164) 评论(0) 推荐(0) 编辑