結果

問題 No.2102 [Cherry Alpha *] Conditional Reflection
ユーザー t98slidert98slider
提出日時 2022-10-15 14:05:05
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,660 bytes
コンパイル時間 1,793 ms
コンパイル使用メモリ 171,280 KB
実行使用メモリ 115,608 KB
最終ジャッジ日時 2024-06-26 19:46:56
合計ジャッジ時間 11,049 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 154 ms
114,024 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 82 ms
58,736 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 108 ms
58,492 KB
testcase_43 AC 108 ms
58,652 KB
testcase_44 AC 111 ms
58,608 KB
testcase_45 AC 107 ms
58,728 KB
testcase_46 AC 111 ms
58,728 KB
testcase_47 AC 160 ms
113,984 KB
testcase_48 AC 155 ms
114,028 KB
testcase_49 AC 156 ms
113,900 KB
testcase_50 AC 157 ms
113,904 KB
testcase_51 AC 154 ms
113,900 KB
testcase_52 AC 151 ms
115,608 KB
testcase_53 AC 152 ms
115,604 KB
testcase_54 AC 156 ms
115,608 KB
testcase_55 AC 154 ms
114,024 KB
testcase_56 AC 153 ms
114,024 KB
testcase_57 AC 153 ms
113,896 KB
testcase_58 AC 91 ms
59,160 KB
testcase_59 WA -
testcase_60 AC 12 ms
5,376 KB
testcase_61 AC 158 ms
114,028 KB
testcase_62 WA -
testcase_63 WA -
testcase_64 WA -
testcase_65 WA -
testcase_66 WA -
testcase_67 AC 21 ms
5,376 KB
testcase_68 WA -
testcase_69 AC 20 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

struct Trie{
    struct Node {
        std::array<int, 26> child;
        int sz;
        Node(void) :sz(0) { child.fill(-1); }
        const int& operator[](int k) const { return child[k]; }
        int& operator[](int k) { return child[k]; }
    };
    int num;
    vector<Node> tree;
    Trie() : num(0) {
        tree.emplace_back(Node());
    }
    void insert(const string &s){
        int cur = 0;
        for(auto &&c:s){
            if(tree[cur][c - 'a'] == -1){
                tree[cur][c - 'a'] = ++num;
                tree.emplace_back(Node());
            }
            cur = tree[cur][c - 'a'];
        }
        tree[cur].sz++;
    }
    bool search(string &s){
        int cur = 0, d = 0;
        for(int i = 0; i < s.size(); i++){
            if(tree[cur][s[i] - 'a'] == -1){
                if(i + 1 == s.size())return false;
                swap(s[i], s[i + 1]);
                bool ans = true;
                for(int j = i; j < s.size(); j++){
                    cur = tree[cur][s[j] - 'a'];
                    if(cur == -1){
                        ans = false;
                        break;
                    }
                }
                swap(s[i], s[i + 1]);
                return ans && tree[cur].sz ? true : false;
            }
            cur = tree[cur][s[i] - 'a'];
        }
        return tree[cur].sz ? true : false;
    }
};

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int Q;
    cin >> Q;
    Trie trie;
    string s;
    while(Q--){
        cin >> s;
        cout << (trie.search(s) ? "Yes" : "No") << '\n';
        trie.insert(s);
    }
}
0