# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
223208 | jamielim | Trener (COCI20_trener) | C++14 | 12 ms | 7168 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const ll MOD=1000000007;
string str[20][1505];
pair<string,int> str2[20][3005];
int main(){
int n,k;
scanf("%d%d",&n,&k);
char temp[55];
for(int i=0;i<n;i++){
for(int j=0;j<k;j++){
scanf("%s",temp);
str[i][j]=temp;
}
sort(str[i],str[i]+k);
if(i!=0){
for(int j=0;j<k;j++){
for(int l=0;l<i;l++){
str2[i][j].first+=str[i][j][l];
str2[i][j+k].first+=str[i][j][l+1];
str2[i][j].second=str2[i][j+k].second=j;
}
}
sort(str2[i],str2[i]+2*k);
//for(int j=0;j<2*k;j++)printf("%s ",str2[i][j].first.c_str());
//printf("\n");
}
}
ll dp[n][k]; memset(dp,0,sizeof(dp));
for(int i=0;i<k;i++)dp[n-1][i]=1;
for(int i=n-2;i>=0;i--){
int ptr=0;
bitset<1505> done;
for(int j=0;j<k;j++){
done.reset();
if(j!=0&&str[i][j]==str[i][j-1]){
dp[i][j]=dp[i][j-1];continue;
}
while(ptr<2*k){
if(str[i][j]==str2[i+1][ptr].first&&done[str2[i+1][ptr].second]==0){
done[str2[i+1][ptr].second]=1;
dp[i][j]+=dp[i+1][str2[i+1][ptr].second];
dp[i][j]%=MOD;
}else if(str[i][j]<str2[i+1][ptr].first)break;
ptr++;
}
//printf("%lld ",dp[i][j]);
}
//printf("\n");
}
ll ans=0;
for(int i=0;i<k;i++){ans+=dp[0][i];ans%=MOD;}
printf("%lld",ans);
}
컴파일 시 표준 에러 (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... |