摘要:
#include#include#include#include#includeusing namespace std;const int N = 2010;const int M = 10010;typedef long long LL;const int SIZE = 100003;const int SEED = 13333;struct Node{ LL key; int type; Node *next; Node *set(LL _key,Node *_next ){ key = _key; next = _next; type = -1; ... 阅读全文