結果

問題 No.2102 [Cherry Alpha *] Conditional Reflection
ユーザー みここみここ
提出日時 2022-12-12 05:13:01
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 933 ms / 3,000 ms
コード長 1,666 bytes
コンパイル時間 884 ms
コンパイル使用メモリ 83,444 KB
実行使用メモリ 142,956 KB
最終ジャッジ日時 2024-11-06 05:13:23
合計ジャッジ時間 32,011 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
8,880 KB
testcase_01 AC 6 ms
8,848 KB
testcase_02 AC 327 ms
37,032 KB
testcase_03 AC 393 ms
54,860 KB
testcase_04 AC 352 ms
35,224 KB
testcase_05 AC 282 ms
20,580 KB
testcase_06 AC 376 ms
36,732 KB
testcase_07 AC 348 ms
117,992 KB
testcase_08 AC 167 ms
9,804 KB
testcase_09 AC 364 ms
72,828 KB
testcase_10 AC 186 ms
16,852 KB
testcase_11 AC 147 ms
28,764 KB
testcase_12 AC 281 ms
36,140 KB
testcase_13 AC 444 ms
76,148 KB
testcase_14 AC 305 ms
27,532 KB
testcase_15 AC 416 ms
37,816 KB
testcase_16 AC 531 ms
65,660 KB
testcase_17 AC 240 ms
76,360 KB
testcase_18 AC 395 ms
105,136 KB
testcase_19 AC 218 ms
24,836 KB
testcase_20 AC 479 ms
81,000 KB
testcase_21 AC 270 ms
10,908 KB
testcase_22 AC 584 ms
77,908 KB
testcase_23 AC 582 ms
78,124 KB
testcase_24 AC 583 ms
77,488 KB
testcase_25 AC 585 ms
78,072 KB
testcase_26 AC 575 ms
78,404 KB
testcase_27 AC 589 ms
77,868 KB
testcase_28 AC 582 ms
77,664 KB
testcase_29 AC 575 ms
77,480 KB
testcase_30 AC 597 ms
78,528 KB
testcase_31 AC 590 ms
77,932 KB
testcase_32 AC 576 ms
78,124 KB
testcase_33 AC 574 ms
77,868 KB
testcase_34 AC 573 ms
77,780 KB
testcase_35 AC 571 ms
77,808 KB
testcase_36 AC 583 ms
78,692 KB
testcase_37 AC 560 ms
77,956 KB
testcase_38 AC 572 ms
77,352 KB
testcase_39 AC 573 ms
77,732 KB
testcase_40 AC 585 ms
77,936 KB
testcase_41 AC 585 ms
77,820 KB
testcase_42 AC 463 ms
65,144 KB
testcase_43 AC 470 ms
63,420 KB
testcase_44 AC 474 ms
63,776 KB
testcase_45 AC 447 ms
64,596 KB
testcase_46 AC 480 ms
63,544 KB
testcase_47 AC 334 ms
109,876 KB
testcase_48 AC 328 ms
110,400 KB
testcase_49 AC 332 ms
111,576 KB
testcase_50 AC 328 ms
110,112 KB
testcase_51 AC 322 ms
110,616 KB
testcase_52 AC 201 ms
142,600 KB
testcase_53 AC 199 ms
142,624 KB
testcase_54 AC 200 ms
142,956 KB
testcase_55 AC 202 ms
141,476 KB
testcase_56 AC 204 ms
141,528 KB
testcase_57 AC 200 ms
141,408 KB
testcase_58 AC 165 ms
107,952 KB
testcase_59 AC 505 ms
59,364 KB
testcase_60 AC 162 ms
8,848 KB
testcase_61 AC 203 ms
141,532 KB
testcase_62 AC 19 ms
10,636 KB
testcase_63 AC 132 ms
9,144 KB
testcase_64 AC 168 ms
9,216 KB
testcase_65 AC 211 ms
10,376 KB
testcase_66 AC 933 ms
91,684 KB
testcase_67 AC 306 ms
8,872 KB
testcase_68 AC 46 ms
10,416 KB
testcase_69 AC 311 ms
9,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

struct Trie
{
    int c;
    std::vector<std::vector<int>> v;

    Trie(int c) : c(c), v(1)
    {
        v[0].resize(c);
    }

    void insert(string &s)
    {
        int u = 0;
        int n = s.size();
        for(int i = 0; i < n; i++)
        {
            if(!v[u][s[i] - 'a'])
            {
                v[u][s[i] - 'a'] = v.size();
                std::vector<int> w(c);
                v.push_back(w);
            }
            u = v[u][s[i] - 'a'];
        }
    }

    bool find_sub(int i, int u, int n, bool swaped, string &s)
    {
        if(i == n)
        {
            return true;
        }
        bool res = false;
        if(v[u][s[i] - 'a'])
        {
            res |= find_sub(i + 1, v[u][s[i] - 'a'], n, swaped, s);
        }
        if(i < n - 1 && !swaped && s[i] != s[i + 1] && v[u][s[i + 1] - 'a'])
        {
            int r = v[u][s[i + 1] - 'a'];
            if(v[r][s[i] - 'a'])
            {
                res |= find_sub(i + 2, v[r][s[i] - 'a'], n, true, s);
            }
        }
        return res;
    }

    bool find(string &s)
    {
        int n = s.size();
        return find_sub(0, 0, n, false, s);
    }
};

int main()
{
    int n;
    cin >> n;
    vector<Trie> tr(10000, Trie(26));
    int d[1000005];
    for(int i = 0; i <= 1000000; i++)
    {
        d[i] = -1;
    }
    int k = 0;
    for(int i = 0; i < n; i++)
    {
        string s;
        cin >> s;
        int l = s.size();
        if(d[l] == -1)
        {
            d[l] = k++;
        }
        cout << (tr[d[l]].find(s) ? "Yes" : "No") << endl;
        tr[d[l]].insert(s);
    }
}
0