题目传送门 1 /* 2 这题可以用stl的mutiset容器方便求解,我对这东西不熟悉,TLE了几次,最后用读入外挂水过。 3 题解有O(n)的做法,还以为我是侥幸过的,后来才知道iterator it写在循环内才超时了,囧! 4 */ 5 /*******************...
分类:
其他好文 时间:
2015-08-05 18:15:59
阅读次数:
94
1 void read(int &x) 2 { 3 int f = 1; x = 0; 4 char ch = getchar (); 5 while ((ch '9') && ch != '-') 6 ch = getchar (); 7 ...
分类:
其他好文 时间:
2015-04-10 22:18:52
阅读次数:
109
读入外挂当题目坑到连scanf都TLE的时候可试试读入外挂---inline int getint() //inline为内联函数,目的是预处理,可减少时间{ char c=getchar(); while(c!='-'&&!isdigit(c)) c=getchar(); int...
分类:
其他好文 时间:
2015-03-11 16:37:15
阅读次数:
150
HDU 5183 Negative and Positive (NP) (set + 读入外挂 乱搞)...
分类:
其他好文 时间:
2015-03-08 06:48:04
阅读次数:
992