摘要:
#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... 阅读全文