# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
223224 | 2020-04-15T05:35:32 Z | dantoh000 | Trener (COCI20_trener) | C++14 | 63 ms | 512 KB |
#include <bits/stdc++.h> using namespace std; typedef long long ll; const int mod = 1000000007; int n,k; ll KEY = 93993939; ll f[55]; int v[26]; 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; } int dp[2][1505]; ll a[55][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); 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); } } for (int i = 1; i <= k; i++) dp[n&1][i] = 1; for (int i = n-1; i >= 1; i--){ for (int j = 1; j <= k; j++){ dp[i&1][j] = 0; for (int j2 = 1; j2 <= k; j2++){ if (can(a[i][j],a[i+1][j2],i)){ dp[i&1][j] += dp[1-i&1][j2]; dp[i&1][j] %= mod; } } } } int sum = 0; for (int i = 1; i <= k; i++) { sum += dp[1][i]; sum %= mod; } printf("%d",sum); }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 5 ms | 384 KB | Output is correct |
2 | Correct | 5 ms | 384 KB | Output is correct |
3 | Incorrect | 5 ms | 384 KB | Output isn't correct |
4 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 63 ms | 512 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 5 ms | 384 KB | Output is correct |
2 | Correct | 5 ms | 384 KB | Output is correct |
3 | Incorrect | 5 ms | 384 KB | Output isn't correct |
4 | Halted | 0 ms | 0 KB | - |