Shirlies
宁静专注认真的程序媛~
摘要: 一道简单的线段树题目,好久没有刷题,偶来刷刷,除了刚开始提交RE了,原因是segtree数组开的太小了,一改大就A了,本来代码是用vim写的,用G++编译,结果老是报错,错的都很离谱,就改用code::blocks编译@_@。。。再去研究下G++。。。代码如下: 1 #include <cstdio> 2 #include <algorithm> 3 4 const int maxlen = 200000+10; 5 int scores[maxlen]; 6 7 struct node 8 { 9 int left,right; 10 int value... 阅读全文
posted @ 2013-03-20 19:41 Shirlies 阅读(185) 评论(1) 推荐(0) 编辑