摘要: #include#include#include#include#include#include#includeusing namespace std; const int MaxInt = 0x7fffffff;const int Max = 100010; struct Node{ int next; int value; bool flag; Node():next(0), value(0), flag(false) { } Node(int nxt, int val): next(nxt), value(val), flag(false) { }};vec... 阅读全文
posted @ 2013-10-09 21:44 forgood 阅读(367) 评论(0) 推荐(0) 编辑