记录编号 |
575372 |
评测结果 |
AAAAA |
题目名称 |
Cafe Stella |
最终得分 |
100 |
用户昵称 |
ムラサメ |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.000 s |
提交时间 |
2022-09-12 16:44:59 |
内存使用 |
0.00 MiB |
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
char a[10][10][5];
int n,g[300];
int main(){
freopen("murasame_adultxp3.in","r",stdin);
freopen("murasame_adultxp3.out","w",stdout);
ios::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
cin>>n;
for(int i=1;i<=n;i++){
for(int j=1;j<=n;j++){
cin>>a[i][j];
}
}
for(int i=2;i<=n;i++){
for(int j=2;j<=n;j++){
if(strlen(a[i][j])==1){
g[a[i][j][0]]++;
}
}
}
for(int i=2;i<=n;i++){
for(int j=2;j<=n;j++){
int x=g[a[i][1][0]]-1,y=g[a[1][j][0]]-1;
int z=0;
int l=strlen(a[i][j]);
for(int k=0;k<=l-1;k++){
int val=g[a[i][j][k]]-1;
z=z*(n-1)+val;
}
if(x+y!=z){
cout<<"FccKcuf"<<endl;
return 0;
}
}
}
for(int i=2;i<=n;i++){
cout<<a[1][i][0]<<"="<<g[a[1][i][0]]-1<<" ";
}
cout<<endl<<n-1<<endl;
return 0;
}