Submission #845483

#TimeUsernameProblemLanguageResultExecution timeMemory
845483vjudge1Trener (COCI20_trener)C++17
22 / 110
18 ms816 KiB
#include <bits/stdc++.h> #pragma optimize "DostSeferoğlu" #pragma GCC optimize("unroll-loops,Ofast") #pragma GCC target("avx2,tune=native") using namespace std; #define int long long #define pii pair<int,int> #define bg begin #define vi vector<int> #define endl '\n' #define vvi vector<vi> #define pc __builtin_popcountll #define vp vector<pii> #define sp << " " << #define all(x) x.bg()+1,x.end() #define ff first #define ss second #define brake {cout << "OK\n";return;} #define debug(x) {cout << #x << ": "; for (auto it : x) cout << it << " ";cout << endl;} #define FF(xxx,sss,yyy) for (int xxx=sss;xxx<=yyy;++xxx) #define F(xx,yy) for (int xx=1;xx<=yy;++xx) #define pb push_back const int inf = 1e18; const int MOD = 1e9+7; const int N = 2e5+1; const int A = 2131924; const int B = 3215515; const int C = 1631662; int add(int x,int y) { return ((x%MOD)+(y%MOD))%MOD; } int mult(int x,int y) { return ((x%MOD)*(y%MOD))%MOD; } int hsha(string& s,int l,int r) { int ret = 0; for (int k=l;k<=r;k++) { ret = add(mult(ret,A),s[k-1]); } return ret; } int hshb(string& s,int l,int r) { int ret = 0; for (int k=l;k<=r;k++) { ret = add(mult(ret,B),s[k-1]); } return ret; } int hshc(string& s,int l,int r) { int ret = 0; for (int k=l;k<=r;k++) { ret = add(mult(ret,C),s[k-1]); } return ret; } void solve() { int n,k; cin >> n >> k; int fhasha[n+1][k+1],phasha[n+1][k+1],shasha[n+1][k+1]; int fhashb[n+1][k+1],phashb[n+1][k+1],shashb[n+1][k+1]; int fhashc[n+1][k+1],phashc[n+1][k+1],shashc[n+1][k+1]; F(i,n) { F(j,k) { string s; cin >> s; fhasha[i][j] = hsha(s,1,i); fhashb[i][j] = hshb(s,1,i); fhashc[i][j] = hshc(s,1,i); if (i > 1) { shasha[i][j] = hsha(s,2,i); shashb[i][j] = hshb(s,2,i); shashc[i][j] = hshc(s,2,i); phasha[i][j] = hsha(s,1,i-1); phashb[i][j] = hshb(s,1,i-1); phashc[i][j] = hshc(s,1,i-1); } } } int ans[n+1][k+1]; memset(ans,0,sizeof ans); F(i,k) ans[1][i] = 1; for (int i=1;i<n;i++) { for (int j=1;j<=k;j++) { for (int j2=1;j2<=k;j2++) { if (phasha[i+1][j2] == fhasha[i][j] || shasha[i+1][j2] == fhasha[i][j]) { if (phashb[i+1][j2] == fhashb[i][j] || shashb[i+1][j2] == fhashb[i][j]) { if (phashc[i+1][j2] == fhashc[i][j] || shashc[i+1][j2] == fhashc[i][j]) { ans[i+1][j2]+=ans[i][j]; } } } } } } int sm = 0; F(i,k) { sm = add(sm,ans[n][i]); } cout << sm << endl; } signed main() { ios_base::sync_with_stdio(0);cin.tie(0); #ifdef Local freopen("input.in", "r", stdin); freopen("input.out", "w", stdout); #endif int t = 1; //cin >> t; while (t --> 0) solve(); }

Compilation message (stderr)

trener.cpp:2: warning: ignoring '#pragma optimize ' [-Wunknown-pragmas]
    2 | #pragma optimize "DostSeferoğlu"
      |
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...