# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
223211 | errorgorn | Trener (COCI20_trener) | C++14 | 22 ms | 384 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define ii pair<ll,ll>
#define iii pair<ll,ii>
#define endl '\n'
int n,k;
map<string,ll> m[2];
int main(){
ios::sync_with_stdio(0);
cin.tie(0);
cin>>n>>k;
m[0][""]=1;
int a=0,b=1;
for (int x=0;x<n;x++){
for (int y=0;y<k;y++){
string s,t;
ll res=0;
cin>>s;
t=s;
t.pop_back();
if (m[a].count(t)) res+=m[a][t];
for (int x=1;x<s.size();x++){
if (t[x-1]!=s[x]){
t[x-1]=s[x];
if (m[a].count(t)) res+=m[a][t];
}
}
m[b][s]+=res;
//cout<<s<<" "<<res<<endl;
}
swap(a,b);
m[b].clear();
}
ll ans=0;
for (auto &it:m[a]){
ans+=it.second;
}
cout<<ans<<endl;
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |