結果

問題 No.2102 [Cherry Alpha *] Conditional Reflection
ユーザー t98slidert98slider
提出日時 2022-10-15 13:34:34
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 442 ms / 3,000 ms
コード長 2,084 bytes
コンパイル時間 1,640 ms
コンパイル使用メモリ 176,856 KB
実行使用メモリ 117,580 KB
最終ジャッジ日時 2024-06-26 19:45:01
合計ジャッジ時間 14,393 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 97 ms
32,472 KB
testcase_03 AC 136 ms
58,712 KB
testcase_04 AC 94 ms
31,736 KB
testcase_05 AC 51 ms
10,992 KB
testcase_06 AC 99 ms
31,144 KB
testcase_07 AC 120 ms
114,400 KB
testcase_08 AC 16 ms
6,944 KB
testcase_09 AC 133 ms
60,060 KB
testcase_10 AC 39 ms
10,480 KB
testcase_11 AC 49 ms
17,564 KB
testcase_12 AC 88 ms
32,828 KB
testcase_13 AC 156 ms
59,152 KB
testcase_14 AC 71 ms
17,396 KB
testcase_15 AC 107 ms
31,352 KB
testcase_16 AC 177 ms
59,548 KB
testcase_17 AC 78 ms
59,168 KB
testcase_18 AC 146 ms
115,924 KB
testcase_19 AC 57 ms
17,812 KB
testcase_20 AC 166 ms
60,320 KB
testcase_21 AC 27 ms
6,940 KB
testcase_22 AC 196 ms
59,056 KB
testcase_23 AC 204 ms
59,584 KB
testcase_24 AC 199 ms
58,988 KB
testcase_25 AC 188 ms
60,132 KB
testcase_26 AC 194 ms
59,248 KB
testcase_27 AC 198 ms
59,572 KB
testcase_28 AC 195 ms
59,756 KB
testcase_29 AC 193 ms
59,652 KB
testcase_30 AC 196 ms
59,576 KB
testcase_31 AC 195 ms
58,976 KB
testcase_32 AC 201 ms
59,460 KB
testcase_33 AC 203 ms
59,264 KB
testcase_34 AC 196 ms
58,864 KB
testcase_35 AC 195 ms
59,464 KB
testcase_36 AC 204 ms
58,904 KB
testcase_37 AC 196 ms
60,004 KB
testcase_38 AC 194 ms
59,392 KB
testcase_39 AC 192 ms
59,564 KB
testcase_40 AC 197 ms
59,700 KB
testcase_41 AC 200 ms
59,624 KB
testcase_42 AC 203 ms
59,268 KB
testcase_43 AC 210 ms
60,368 KB
testcase_44 AC 215 ms
59,392 KB
testcase_45 AC 208 ms
59,108 KB
testcase_46 AC 203 ms
60,440 KB
testcase_47 AC 135 ms
113,932 KB
testcase_48 AC 140 ms
115,248 KB
testcase_49 AC 137 ms
114,132 KB
testcase_50 AC 140 ms
114,700 KB
testcase_51 AC 139 ms
114,508 KB
testcase_52 AC 79 ms
115,744 KB
testcase_53 AC 79 ms
117,580 KB
testcase_54 AC 77 ms
116,012 KB
testcase_55 AC 77 ms
114,416 KB
testcase_56 AC 78 ms
113,928 KB
testcase_57 AC 78 ms
114,280 KB
testcase_58 AC 105 ms
103,808 KB
testcase_59 AC 240 ms
59,820 KB
testcase_60 AC 13 ms
6,944 KB
testcase_61 AC 79 ms
114,444 KB
testcase_62 AC 5 ms
6,940 KB
testcase_63 AC 52 ms
6,944 KB
testcase_64 AC 28 ms
6,940 KB
testcase_65 AC 30 ms
6,944 KB
testcase_66 AC 442 ms
115,612 KB
testcase_67 AC 22 ms
6,940 KB
testcase_68 AC 25 ms
6,944 KB
testcase_69 AC 21 ms
6,940 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.push_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.push_back(Node());
            }
            cur=tree[cur][c-'a'];
        }
        tree[cur].sz++;
    }
    int size(const string &s){
        int cur=0;
        for(auto c:s){
            if(tree[cur][c-'a']==-1)return 0;
            cur=tree[cur][c-'a'];
        }
        return tree[cur].sz;
    }
    int size(int node_num){
        return (node_num==-1?0:tree[node_num].sz);
    }
    bool dfs(int v, bool f, int d, string &s){
        if(d == s.size())return tree[v].sz >= 1 ? true : false;
        int c0 = s[d] - 'a';
        if(f){
            for(int i = d; i < s.size(); i++){
                v = tree[v][s[i] - 'a'];
                if(v == -1)return false;
            }
            return tree[v].sz >= 1 ? true : false;
        }
        for(int i = 0; i < 26; i++){
            if(tree[v][i] == -1)continue;
            if(c0 != i){
                if(d + 1 >= s.size())continue;
                int c1 = s[d + 1] - 'a';
                if(tree[v][c1] == -1)continue;
                int nxt = tree[tree[v][c1]][c0];
                if(nxt == -1)continue;
                if(dfs(nxt, true, d + 2, s))return true;
            }else{
                if(dfs(tree[v][i], f, d + 1, s))return true;
            }
        }
        return 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.dfs(0, false, 0, s) ? "Yes" : "No") << '\n';
        trie.insert(s);
    }
}
0