| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 845347 | vjudge1 | Trener (COCI20_trener) | C++17 | 1674 ms | 6232 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#ifndef Local
#pragma GCC optimize("O3,unroll-loops")
#pragma GCC target("avx2,bmi,bmi2,lzcnt,popcnt")
#endif
#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
#include <ext/pb_ds/detail/standard_policies.hpp>
#define int long long
#define pb push_back
#define lim 300000
#define till 40001
// # of primes till 1e6 = 7e4
using namespace std;
using namespace __gnu_pbds;
typedef tree<int,null_type,less<int>,rb_tree_tag,tree_order_statistics_node_update>ordered_set;
using pii = array<int,2>;
const int mod=1000000007ll;
bool sbc(string*s1,string*s2){
int i=0;
bool nope=0;
for(;i<s1->size();i++){
if(s1->at(i)!=s2->at(i)){
nope=1;
break;
}
}
if(!nope)return 1;
i=0;
nope=0;
for(;i<s1->size();i++){
if(s1->at(i)!=s2->at(i+1)){
nope=1;
break;
}
}
if(!nope)return 1;
return 0;
}
void solve(){
int n,k;
cin>>n>>k;
string s[n][k];
for(int i=0;i<n;i++){
for(int j=0;j<k;j++){
cin>>s[i][j];
}
}
int dp[n][k];
for(int i=0;i<n;i++)for(int j=0;j<k;j++){
dp[i][j]=0;
}
for(int i=0;i<k;i++)dp[n-1][i]=1;
for(int i=n-2;0<=i;i--){
for(int j=0;j<k;j++){
for(int t=0;t<k;t++){
if(sbc(&s[i][j],&s[i+1][t])){
dp[i][j]+=dp[i+1][t];
dp[i][j]%=mod;
}
}
}
}
/*
for(int i=0;i<n;i++){
for(int j=0;j<k;j++){
cerr<<dp[i][j]<<" ";
}cerr<<"\n";
}
*/
int ans=0;
for(int i=0;i<k;i++){
ans+=dp[0][i];
ans%=mod;
}
cout<<ans<<"\n";
}
signed main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);cout.tie(NULL);
#ifdef Local
#ifndef INTERACTIVE
freopen("in","r",stdin);
#endif
freopen("out","w",stdout);
#endif
int t=1;
//cin>>t;
while (t--)
{
solve();
}
}컴파일 시 표준 에러 (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... | ||||
