結果

問題 No.2102 [Cherry Alpha *] Conditional Reflection
ユーザー sapphire__15sapphire__15
提出日時 2022-08-13 17:00:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,019 bytes
コンパイル時間 1,225 ms
コンパイル使用メモリ 94,672 KB
実行使用メモリ 44,928 KB
最終ジャッジ日時 2024-06-26 12:58:07
合計ジャッジ時間 30,759 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,752 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 438 ms
26,752 KB
testcase_03 AC 484 ms
32,712 KB
testcase_04 AC 489 ms
26,984 KB
testcase_05 AC 406 ms
20,804 KB
testcase_06 AC 530 ms
28,300 KB
testcase_07 AC 185 ms
20,480 KB
testcase_08 AC 216 ms
11,852 KB
testcase_09 AC 370 ms
30,848 KB
testcase_10 AC 276 ms
14,976 KB
testcase_11 AC 164 ms
15,232 KB
testcase_12 AC 366 ms
23,808 KB
testcase_13 AC 506 ms
36,940 KB
testcase_14 AC 442 ms
23,424 KB
testcase_15 AC 598 ms
30,576 KB
testcase_16 AC 671 ms
40,952 KB
testcase_17 AC 139 ms
16,128 KB
testcase_18 AC 286 ms
26,688 KB
testcase_19 AC 293 ms
18,560 KB
testcase_20 AC 529 ms
39,180 KB
testcase_21 AC 371 ms
17,792 KB
testcase_22 AC 699 ms
44,800 KB
testcase_23 AC 707 ms
44,800 KB
testcase_24 AC 706 ms
44,672 KB
testcase_25 AC 707 ms
44,672 KB
testcase_26 AC 699 ms
44,672 KB
testcase_27 AC 687 ms
44,740 KB
testcase_28 AC 704 ms
44,672 KB
testcase_29 AC 711 ms
44,672 KB
testcase_30 AC 710 ms
44,884 KB
testcase_31 AC 704 ms
44,672 KB
testcase_32 AC 708 ms
44,800 KB
testcase_33 AC 707 ms
44,904 KB
testcase_34 AC 718 ms
44,928 KB
testcase_35 AC 704 ms
44,672 KB
testcase_36 AC 703 ms
44,732 KB
testcase_37 AC 712 ms
44,800 KB
testcase_38 AC 706 ms
44,664 KB
testcase_39 AC 707 ms
44,800 KB
testcase_40 AC 723 ms
44,672 KB
testcase_41 AC 714 ms
44,672 KB
testcase_42 TLE -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
testcase_58 -- -
testcase_59 -- -
testcase_60 -- -
testcase_61 -- -
testcase_62 -- -
testcase_63 -- -
testcase_64 -- -
testcase_65 -- -
testcase_66 -- -
testcase_67 -- -
testcase_68 -- -
testcase_69 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <map>
#include <string>
#include <vector>
using namespace std;

bool check(const string &s, const string &t) {
    static const int ALL_SAME = -10;
    static const int SWAPED   = -11;
    if(s.size() != t.size()) return false;
    int prv = ALL_SAME;
    for(int i = 0; i < (int)s.size(); i++) {
        if(s[i] != t[i]) {
            if(prv == ALL_SAME) prv = i;
            else if(prv == i-1) prv = SWAPED;
            else return false;
        }
    }
    return prv < 0;
}

int main() {
    int n; cin >> n;
    vector<string> s(n);
    for(auto &i : s) cin >> i;
    vector<bool> ans(n);
    map<vector<int>, vector<string>> mp;
    for(int i = 0; i < n; i++) {
        vector<int> cnt(26);
        for(auto &j : s[i]) cnt[j-'a']++;
        for(auto &t : mp[cnt]) {
            if(check(s[i], t)) {
                ans[i] = true;
                break;
            }
        }
        mp[cnt].emplace_back(s[i]);
    }
    for(auto &&i : ans) cout << ((i) ? "Yes" : "No") << endl;
}
0