P1013 进制位


#include <bits/stdc++.h>
using namespace std;
const int maxn = 10;
string ar[maxn][maxn];
map<char,int> num;
int n;
int Get(string s){
    int sum = 0;
    for(int i = 0;i < s.size(); ++i)
        sum = sum*(n-1)+num[s[i]];
    return sum;
}
bool check(int x,int y){
    int a = Get(ar[x][0]);
    int b = Get(ar[0][y]);
    int c = Get(ar[x][y]);
    if(a+b!=c) return false;
    return true;
}
int main(void)
{
    cin>>n;
    for(int i = 0;i < n; ++i){
        for(int j = 0;j < n; ++j){
            cin>>ar[i][j];
            if(i&&j&&ar[i][j].size()==2)
                num[ar[i][0][0]]++;
        }
    }
    for(int i = 1;i < n; ++i){
        for(int j = 1;j < n; ++j){
            if(!check(i,j)){
                return 0*puts("ERROR!");
            }
        }
    }
    for(int i = 1;i < n; ++i)
        printf("%c=%d%c",(char)ar[i][0][0],num[ar[i][0][0]]," \n"[i==n-1]);
    cout<<n-1<<endl;
   return 0;
}