結果
| 問題 |
No.2715 Unique Chimatagram
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-04-05 21:37:06 |
| 言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 775 ms / 2,000 ms |
| コード長 | 1,369 bytes |
| コンパイル時間 | 12,227 ms |
| コンパイル使用メモリ | 282,948 KB |
| 最終ジャッジ日時 | 2025-02-20 20:59:52 |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 40 |
ソースコード
#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;
inline bool is_chimatagram(const string& S, const 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) break;
}
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();
}