# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
223256 | 2020-04-15T06:21:48 Z | dantoh000 | Matching (COCI20_matching) | C++14 | 20 ms | 1024 KB |
#include <bits/stdc++.h> using namespace std; typedef long long ll; const int mod = 1000000007; int n,k; ll KEY = 998244353; ll f[55]; int v[26]; unordered_map<ll,int> ct; ll HASH(string s){ ll res = 0; for (int i = 0; i < s.size(); i++){ res = ((res*KEY) + v[s[i]-'a'])%mod; } return res; } ll a[55][1505]; int dp[2][1505]; bool can(ll a, ll b, int len){ for (int i = 0; i < 26; i++){ if ((a*KEY + v[i])%mod == b || (a + i*f[len])%mod == b) return true; } return false; } int main(){ iota(v,v+26,1); random_shuffle(v,v+26); //for (int i = 0; i < 26; i++) printf("%d ",v[i]); f[0] = 1; for (int i = 1; i <= 50; i++){ f[i] = (f[i-1]*KEY)%mod; } scanf("%d%d",&n,&k); for (int i = 1; i <= n; i++){ for (int j = 1; j <= k; j++){ string s; cin >> s; a[i][j] = HASH(s); //cout << s << " " << a[i][j] << endl; } } for (int i = 1; i <= k; i++) { ct[a[n][i]]++; dp[n&1][i]++; } ll ans = 0; for (int i = n-1; i >= 1; i--){ for (int j = 1; j <= k; j++){ dp[i&1][j] = 0; ll res = 0; for (int T = 1; T <= 26; T++){ //printf("%lld -> %lld %lld\n",a[i][j],(a[i][j]*KEY + T)%mod,(a[i][j] + T*f[i])%mod); res += ct[(a[i][j]*KEY + T)%mod]; if ((a[i][j] + T*f[i])%mod != (a[i][j]*KEY + T)%mod) res += ct[(a[i][j] + T*f[i])%mod]; } res %= mod; dp[i&1][j] = res; if (i != 1) { ct[a[i][j]] += res; ct[a[i][j]] %= mod; } else ans += res; } for (int j = 1; j <= k; j++){ ct[a[i+1][j]] += mod-dp[1-i&1][j]; ct[a[i+1][j]] %= mod; } } printf("%d",ans%mod); }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 20 ms | 1024 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 20 ms | 1024 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 20 ms | 1024 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 20 ms | 1024 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 20 ms | 1024 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |