# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
845228 |
2023-09-06T12:41:32 Z |
vjudge1 |
Trener (COCI20_trener) |
C++17 |
|
11 ms |
1368 KB |
#pragma GCC optimize("O3,unroll-loops")
#pragma GCC target("avx2,bmi,bmi2,lzcnt,popcnt")
#include <bits/stdc++.h>
using namespace std;
//#define int long long
const int MOD = 1e9 + 7;
#define ONLINE_JUDGE
#ifndef ONLINE_JUDGE
#define OPEN freopen(".in", "r", stdin); \
freopen(".out", "w", stdout);
#else
#define OPEN void(23);
#endif
string arr[55][105];
bool check(string &a, string &b)
{
int n = b.size();
bool ok = true;
for(int i = 1; i <= n -1; i++)
{
ok &= a[i -1] == b[i -1];
}
if(ok) return true;
ok = true;
for(int i = 2; i <= n; i++)
{
ok &= a[i -2] == b[i -1];
}
return ok;
}
void solve()
{
int n, k; cin >> n >> k;
for(int i = 1; i <= n; i++)
for(int j = 1; j <= k; j++)
cin >> arr[i][j];
vector <int> dp(k +1, 1);
for(int i = 1; i <= n -1; i++)
{
vector <int> dp2(k +1);
for(int j = 1; j <= k; j++)
{
for(int c = 1; c <= k; c++)
{
if(check(arr[i][j], arr[i +1][c]))
dp2[c] = (dp2[c] + dp[j]) % MOD;
}
}
swap(dp, dp2);
}
int cev = 0;
for(int i = 1; i <= k; i++) cev = (cev + dp[i]) % MOD;
cout << cev;
return;
}
int32_t main()
{
OPEN;
ios_base::sync_with_stdio(false);
cin.tie(0); cout.tie(0);
int t = 1; //cin >> t;
while(t--)
{
solve();
}
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
600 KB |
Output is correct |
2 |
Correct |
0 ms |
604 KB |
Output is correct |
3 |
Correct |
0 ms |
604 KB |
Output is correct |
4 |
Correct |
0 ms |
600 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
11 ms |
824 KB |
Output is correct |
2 |
Correct |
11 ms |
600 KB |
Output is correct |
3 |
Correct |
11 ms |
604 KB |
Output is correct |
4 |
Correct |
7 ms |
604 KB |
Output is correct |
5 |
Correct |
11 ms |
604 KB |
Output is correct |
6 |
Correct |
11 ms |
604 KB |
Output is correct |
7 |
Correct |
7 ms |
604 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
600 KB |
Output is correct |
2 |
Correct |
0 ms |
604 KB |
Output is correct |
3 |
Correct |
0 ms |
604 KB |
Output is correct |
4 |
Correct |
0 ms |
600 KB |
Output is correct |
5 |
Correct |
11 ms |
824 KB |
Output is correct |
6 |
Correct |
11 ms |
600 KB |
Output is correct |
7 |
Correct |
11 ms |
604 KB |
Output is correct |
8 |
Correct |
7 ms |
604 KB |
Output is correct |
9 |
Correct |
11 ms |
604 KB |
Output is correct |
10 |
Correct |
11 ms |
604 KB |
Output is correct |
11 |
Correct |
7 ms |
604 KB |
Output is correct |
12 |
Runtime error |
5 ms |
1368 KB |
Execution killed with signal 11 |
13 |
Halted |
0 ms |
0 KB |
- |