hdu 1166
摘要:
题意:中文题,省。解法:线段树。注意:输入,输出最后用scanf(),printf(),其他的可能超时。ac代码:View Code //线段树,节点更新,区间求和#include<iostream>#include<string>using namespace std;const int M=50000+10;//最大区间int num[M];//记录每一个营的人数struct treestruct{ int left;//左区间 int right;//右区间 int sum;//区间求和}node[M*3];//节点数大约是最大区间的3倍int build(int 阅读全文
posted @ 2012-09-10 17:01 果枫-国峰 阅读(113) 评论(0) 推荐(0) 编辑