摘要:
http://poj.org/problem?id=2785 简单hash,不过不能用set,而且数组不能开太大。 才几十行的代码,当时个人赛居然不会... - -View Code 1 #include <cstdlib> 2 #include <cstring> 3 #include <cstdio> 4 5 using namespace std; 6 7 const int maxn = 4001; 8 const int mod = 15999997; 9 int hash[maxn * maxn], cnt[maxn * maxn];10 int 阅读全文