結果

問題 No.2102 [Cherry Alpha *] Conditional Reflection
ユーザー 👑 NachiaNachia
提出日時 2022-10-15 03:10:33
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 444 ms / 3,000 ms
コード長 2,063 bytes
コンパイル時間 2,279 ms
コンパイル使用メモリ 130,140 KB
実行使用メモリ 75,044 KB
最終ジャッジ日時 2024-06-26 19:21:12
合計ジャッジ時間 24,306 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 17 ms
26,616 KB
testcase_01 AC 16 ms
26,624 KB
testcase_02 AC 170 ms
35,896 KB
testcase_03 AC 221 ms
36,784 KB
testcase_04 AC 168 ms
36,556 KB
testcase_05 AC 108 ms
34,880 KB
testcase_06 AC 179 ms
37,432 KB
testcase_07 AC 270 ms
34,584 KB
testcase_08 AC 38 ms
31,728 KB
testcase_09 AC 205 ms
35,324 KB
testcase_10 AC 72 ms
32,356 KB
testcase_11 AC 82 ms
30,448 KB
testcase_12 AC 142 ms
34,412 KB
testcase_13 AC 241 ms
37,272 KB
testcase_14 AC 134 ms
35,748 KB
testcase_15 AC 191 ms
38,628 KB
testcase_16 AC 288 ms
40,352 KB
testcase_17 AC 175 ms
31,904 KB
testcase_18 AC 263 ms
34,876 KB
testcase_19 AC 99 ms
32,980 KB
testcase_20 AC 262 ms
38,152 KB
testcase_21 AC 56 ms
35,120 KB
testcase_22 AC 317 ms
41,084 KB
testcase_23 AC 319 ms
40,832 KB
testcase_24 AC 323 ms
40,956 KB
testcase_25 AC 314 ms
41,232 KB
testcase_26 AC 308 ms
40,824 KB
testcase_27 AC 321 ms
40,944 KB
testcase_28 AC 311 ms
41,212 KB
testcase_29 AC 317 ms
40,948 KB
testcase_30 AC 319 ms
40,956 KB
testcase_31 AC 307 ms
41,072 KB
testcase_32 AC 310 ms
40,948 KB
testcase_33 AC 306 ms
40,816 KB
testcase_34 AC 310 ms
40,936 KB
testcase_35 AC 317 ms
40,952 KB
testcase_36 AC 310 ms
40,948 KB
testcase_37 AC 317 ms
40,820 KB
testcase_38 AC 317 ms
40,820 KB
testcase_39 AC 328 ms
40,816 KB
testcase_40 AC 325 ms
40,832 KB
testcase_41 AC 322 ms
40,820 KB
testcase_42 AC 364 ms
68,300 KB
testcase_43 AC 373 ms
68,276 KB
testcase_44 AC 371 ms
68,408 KB
testcase_45 AC 362 ms
68,272 KB
testcase_46 AC 370 ms
68,396 KB
testcase_47 AC 401 ms
71,532 KB
testcase_48 AC 407 ms
71,636 KB
testcase_49 AC 393 ms
71,656 KB
testcase_50 AC 413 ms
71,532 KB
testcase_51 AC 431 ms
71,484 KB
testcase_52 AC 385 ms
74,812 KB
testcase_53 AC 427 ms
74,816 KB
testcase_54 AC 382 ms
74,812 KB
testcase_55 AC 392 ms
74,872 KB
testcase_56 AC 384 ms
75,000 KB
testcase_57 AC 389 ms
75,044 KB
testcase_58 AC 162 ms
61,148 KB
testcase_59 AC 444 ms
64,192 KB
testcase_60 AC 38 ms
31,912 KB
testcase_61 AC 376 ms
75,008 KB
testcase_62 AC 25 ms
28,140 KB
testcase_63 AC 254 ms
71,852 KB
testcase_64 AC 244 ms
69,756 KB
testcase_65 AC 261 ms
71,352 KB
testcase_66 AC 302 ms
71,644 KB
testcase_67 AC 102 ms
54,544 KB
testcase_68 AC 222 ms
61,244 KB
testcase_69 AC 101 ms
54,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <utility>
#include <map>
#include <set>
#include <atcoder/string>

using namespace std;
using i32 = int32_t;
using u32 = uint32_t;
using i64 = int64_t;
using u64 = uint64_t;
using u128 = __uint128_t;
#define rep(i,n) for(int i=0; i<(int)(n); i++)


int main(){
    int N; cin >> N;
    vector<string> S(N); rep(i,N) cin >> S[i];

    vector<vector<int>> I(1000001);
    rep(i,N) I[S[i].size()].push_back(i);
    
    vector<int> ans(N, 0);
    
    rep(L,I.size()) if(L>=3) if(!I[L].empty()){
        string s;
        for(auto& i : I[L]){ s += S[i].substr(2); s += S[i].substr(0, L-2); }
        auto sa = atcoder::suffix_array(s);
        auto lcp = atcoder::lcp_array(s, sa);
        map<pair<int, int>, int> Q;
        rep(i,sa.size()){
            if(i != 0) if(lcp[i-1] < L-2) Q.clear();
            int c = sa[i] / (L*2-4), p = sa[i] % (L*2-4);
            if(p >= L-1) continue;
            int si = I[L][c];
            int c1 = S[si][p], c2 = S[si][p+1];
            pair<int, int> key = { p, max(c1,c2)*1000+min(c1,c2) };
            if(Q.count(key)){
                int& v = Q[key];
                ans[max(v, si)] = 1; v = min(v, si);
            } else Q.insert({ key, si });
        }
    }
    
    rep(L,I.size()){
        if(L==1){
            map<string, int> Q;
            for(int i : I[L]) /* I[L] sorted */ {
                if(Q.count(S[i])) ans[i] = 1; else Q[S[i]] = i;
            }
        }
        if(L==2){
            map<int, int> Q;
            for(int i : I[L]) /* I[L] sorted */ {
                int c1 = S[i][0], c2 = S[i][1];
                int key = max(c1,c2)*1000+min(c1,c2);
                if(Q.count(key)) ans[i] = 1; else Q[key] = i;
            }
        }
    }

    vector<int> vis(N);
    rep(i,N){
        cout << (ans[i] ? "Yes\n" : "No\n");
    }

    return 0;
}


struct ios_do_not_sync{
    ios_do_not_sync(){
        std::ios::sync_with_stdio(false);
        std::cin.tie(nullptr);
    }
} ios_do_not_sync_instance;


0