結果

問題 No.2715 Unique Chimatagram
ユーザー nu50218nu50218
提出日時 2024-04-05 21:35:46
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 1,312 bytes
コンパイル時間 3,751 ms
コンパイル使用メモリ 229,316 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-10-01 01:49:21
合計ジャッジ時間 12,433 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 38 TLE * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

#ifdef LOCAL
#include <local.hpp>
#else
#pragma GCC optimize("O3,unroll-loops")
#pragma GCC target("avx2,popcnt,lzcnt,abm,bmi,bmi2")
#include <bits/stdc++.h>
#define debug(...) ((void)0)
#define postprocess(...) ((void)0)
#endif

using namespace std;
using ll = long long;
using ld = long double;

bool is_chimatagram(string S, string T) {
    if (S.size() + 1 != T.size()) return false;

    map<char, int> m;

    for (auto&& c : S) {
        m[c]--;
    }
    for (auto&& c : T) {
        m[c]++;
    }

    for (auto&& [c, num] : m) {
        if (num != 0 && num != 1) return false;
    }

    return true;
}

void solve([[maybe_unused]] int test) {
    int N;
    cin >> N;

    vector<string> S(N);
    for (auto&& s : S) {
        cin >> s;
    }

    for (auto&& s : S) {
        for (char c = 'a'; c <= 'z'; c++) {
            string T = s + c;

            int cnt = 0;
            for (int i = 0; i < N; i++) {
                cnt += is_chimatagram(S[i], T);
            }

            if (cnt == 1) {
                cout << T << endl;
                return;
            }
        }
    }

    cout << -1 << endl;
}

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);

    int t = 1;
    // cin >> t;
    for (int i = 1; i <= t; i++) {
        solve(i);
    }

    postprocess();
}
0