結果

問題 No.2715 Unique Chimatagram
ユーザー Maffy-0
提出日時 2024-04-17 14:00:00
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 1,493 bytes
コンパイル時間 2,575 ms
コンパイル使用メモリ 214,960 KB
最終ジャッジ日時 2025-02-21 02:49:46
ジャッジサーバーID
(参考情報)
judge3 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 21 WA * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for (int i = 0; i < int(n); i++)
#define rev(i, n) for (int i = (n - 1); i >= 0; i--)
#define all(x) (x).begin(), (x).end()
void YesNo(bool f) {cout << (f ? "Yes\n" : "No\n");};

void fast_io() {
    cin.tie(nullptr);
    ios_base::sync_with_stdio(false);
}

signed main(void) {
    fast_io();
    int N;
    cin >> N;
    vector<string> S;
    vector<map<char, int>> mp(N);
    rep(i, N) {
        string s;
        cin >> s;
        S.push_back(s);
        map<char, int> m;
        for (auto c : s) {
            m[c]++;
        }
        mp[i] = m;
    }
    set<int> id;
    rep(i, N) {
        rep(j, i) {
            if (S[i] == S[j]) {
                id.insert(i);
                id.insert(j);
                continue;
            }
            if (mp[i] == mp[j]) {
                cout << -1 << endl;
                return 0;
            }
        }
    }
    for (char c = 'a'; c <= 'z'; c++) {
        rep(i, N) {
            if (id.count(i)) continue;
            string T = S[i] + c;
            sort(all(T));
            bool ok = false;
            rep(j, i) {
                for (char d = 'a'; d <= 'z'; d++) {
                    string U = S[j] + d;
                    sort(all(U));
                    ok |= (T == U);
                }
            }
            if (!ok) {
                cout << T << endl;
                return 0;
            }
        }
    }
    cout << -1 << endl;
    return 0;
}
0