#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define ar array
const int MOD=1e9+7, P=101;
int getHash(string s) {
ll pp=1, hsh=0;
for (char c : s) {
hsh=(hsh+(c-'a'+1)*pp)%MOD;
pp=pp*P%MOD;
}
return hsh;
}
int n, k;
string name[50][1500];
unordered_map<int, int> dp, last;
int main() {
ios::sync_with_stdio(0);
cin.tie(0);
cin >> n >> k;
for (int i=0; i<n; ++i) for (int j=0; j<k; ++j) cin >> name[i][j];
for (int i=0; i<k; ++i) ++dp[getHash(name[0][i])];
for (int i=1; i<n; ++i) { //current string is of length i+1
swap(dp, last);
dp.clear();
for (int j=0; j<k; ++j) {
int cur=getHash(name[i][j]);
int hsh=getHash(name[i][j].substr(0, i));
auto it=last.find(hsh);
if (it!=last.end()) dp[cur]+=it->second;
int hsh2=getHash(name[i][j].substr(1));
if (hsh!=hsh2) {
hsh=hsh2;
it=last.find(hsh);
if (it!=last.end()) dp[cur]+=it->second;
}
}
//for (auto& x : dp) {cout << x.first << " " << x.second << "\n";}
for (auto& x : dp) if (x.second>=MOD) x.second-=MOD;
//cout << "\n\n";
}
int ans=0;
for (auto& x : dp) ans=(ans+x.second)%MOD;
cout << ans << "\n";
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
2688 KB |
Output is correct |
2 |
Correct |
2 ms |
2688 KB |
Output is correct |
3 |
Correct |
2 ms |
2688 KB |
Output is correct |
4 |
Correct |
2 ms |
2688 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
6 ms |
2816 KB |
Output is correct |
2 |
Correct |
6 ms |
2816 KB |
Output is correct |
3 |
Correct |
6 ms |
2816 KB |
Output is correct |
4 |
Incorrect |
6 ms |
2816 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
2688 KB |
Output is correct |
2 |
Correct |
2 ms |
2688 KB |
Output is correct |
3 |
Correct |
2 ms |
2688 KB |
Output is correct |
4 |
Correct |
2 ms |
2688 KB |
Output is correct |
5 |
Correct |
6 ms |
2816 KB |
Output is correct |
6 |
Correct |
6 ms |
2816 KB |
Output is correct |
7 |
Correct |
6 ms |
2816 KB |
Output is correct |
8 |
Incorrect |
6 ms |
2816 KB |
Output isn't correct |
9 |
Halted |
0 ms |
0 KB |
- |