摘要:
A - The New Year: Meeting Friends 水 B - Text Document Analysis 字符串暴力模拟,感觉还是需要一点技巧的,我写的太慢了。 C - Polycarp at the Radio 应该也是sb暴力题,map乱搞的(队友写的== D - Lakes 阅读全文
摘要:
#include using namespace std; const int N = 5005; const int M = 100010; struct Edge { int to, next; } edge[M]; int head[N]; int cntE; void addedge(int u, int v) { edge[cntE].to = v; edge[c... 阅读全文