結果

問題 No.2102 [Cherry Alpha *] Conditional Reflection
ユーザー 👑 AngrySadEightAngrySadEight
提出日時 2022-10-15 00:24:25
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 3,606 bytes
コンパイル時間 4,606 ms
コンパイル使用メモリ 271,052 KB
実行使用メモリ 75,904 KB
最終ジャッジ日時 2024-06-26 18:28:46
合計ジャッジ時間 72,024 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
11,136 KB
testcase_01 AC 10 ms
11,136 KB
testcase_02 AC 618 ms
38,368 KB
testcase_03 AC 831 ms
50,432 KB
testcase_04 WA -
testcase_05 AC 418 ms
25,136 KB
testcase_06 AC 681 ms
39,536 KB
testcase_07 WA -
testcase_08 AC 192 ms
15,360 KB
testcase_09 WA -
testcase_10 AC 273 ms
20,480 KB
testcase_11 AC 263 ms
27,112 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 511 ms
31,232 KB
testcase_15 AC 748 ms
41,344 KB
testcase_16 WA -
testcase_17 AC 611 ms
48,236 KB
testcase_18 WA -
testcase_19 AC 357 ms
26,368 KB
testcase_20 WA -
testcase_21 AC 325 ms
18,120 KB
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 AC 1,325 ms
70,128 KB
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 809 ms
32,884 KB
testcase_43 AC 805 ms
32,896 KB
testcase_44 AC 819 ms
32,768 KB
testcase_45 AC 797 ms
32,936 KB
testcase_46 AC 815 ms
32,896 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 AC 1,002 ms
72,108 KB
testcase_53 AC 1,033 ms
72,124 KB
testcase_54 AC 1,101 ms
72,172 KB
testcase_55 AC 1,374 ms
73,124 KB
testcase_56 AC 1,363 ms
73,208 KB
testcase_57 AC 1,399 ms
73,088 KB
testcase_58 AC 59 ms
12,580 KB
testcase_59 AC 1,356 ms
75,620 KB
testcase_60 AC 176 ms
14,568 KB
testcase_61 AC 1,406 ms
73,144 KB
testcase_62 AC 26 ms
11,648 KB
testcase_63 AC 256 ms
15,104 KB
testcase_64 AC 233 ms
15,104 KB
testcase_65 AC 281 ms
15,616 KB
testcase_66 WA -
testcase_67 AC 331 ms
17,408 KB
testcase_68 AC 72 ms
13,132 KB
testcase_69 AC 329 ms
17,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
typedef long long ll;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define repr(i, n) for (int i = (int)(n) - 1; i >= 0; i--)
#define repk(i, k, n) for (int i = k; i < (int)(n); i++)
#define all(v) v.begin(), v.end()
#define mod1 1000000007
#define mod2 998244353
#define vi vector<int>
#define vs vector<string>
#define vc vector<char>
#define vl vector<ll>
#define vvi vector<vector<int>>
#define vvc vector<vector<char>>
#define vvl vector<vector<ll>>
#define vvvi vector<vector<vector<int>>>
#define vvvl vector<vector<vector<ll>>>
#define pii pair<int,int>
#define pil pair<int,ll>
#define pli pair<ll, int>
#define pll pair<ll, ll>
#define vpii vector<pair<int,int>>
#define vpll vector<pair<ll,ll>>
#define vvpii vector<vector<pair<int,int>>>
#define vvpll vector<vector<pair<ll,ll>>>

template<typename T> void debug(T e){
    cerr << e << endl;
}

template<typename T> void debug(vector<T> &v){
    rep(i, v.size()){
        cerr << v[i] << " ";
    }
    cerr << endl;
}

template<typename T> void debug(vector<vector<T>> &v){
    rep(i, v.size()){
        rep(j, v[i].size()){
            cerr << v[i][j] << " ";
        }
        cerr << endl;
    }
}

template<typename T> void debug(vector<pair<T, T>> &v){
    rep(i,v.size()){
        cerr << v[i].first << " " << v[i].second << endl;
    }
}

template<typename T> void debug(set<T> &st){
    for (auto itr = st.begin(); itr != st.end(); itr++){
        cerr << *itr << " ";
    }
    cerr << endl;
}

template<typename T> void debug(multiset<T> &ms){
    for (auto itr = ms.begin(); itr != ms.end(); itr++){
        cerr << *itr << " ";
    }
    cerr << endl;
}

template<typename T> void debug(map<T, T> &mp){
    for (auto itr = mp.begin(); itr != mp.end(); itr++){
        cerr << itr->first << " " << itr->second << endl;
    }
}

void debug_out(){
    cerr << endl;
}

template <typename Head, typename... Tail>
void debug_out(Head H, Tail... T){
    cerr << H << " ";
    debug_out(T...);
}

ll mk_hash(string S, ll h, ll mod){
    ll num = 1;
    ll ret = 0;
    for (ll i = 0; i < S.size(); i++){
        ret = (ret * h) % mod;
        ret = (ret + (S[i] - 'a')) % mod;
    }
    return ret;
}

int main(){
    int N;
    cin >> N;
    vs S(N);
    map<pll, ll> mp;
    rep(i,N) cin >> S[i];
    for (ll i = 0; i < N; i++){
        ll hashs = mk_hash(S[i], 1009, mod1);
        //debug(hashs);
        //mp[pll(hashs, S[i].size())]++;
    }
    vl pows(1000002);
    pows[0] = 1;
    for (ll i = 0; i < 1000001; i++){
        pows[i + 1] = (pows[i] * 1009) % mod1;
    }
    for (ll i = 0; i < N; i++){
        bool pos = false;
        ll hashs = mk_hash(S[i], 1009, mod1);
        if (mp[pll(hashs, S[i].size())]){
            pos = true;
        }
        ll len = S[i].size();
        for (ll j = 0; j < len - 1; j++){
            ll new_hash = hashs;
            new_hash = (new_hash - ((ll)(S[i][j] - 'a') * pows[len - 1 - j]) % mod1 + mod1) % mod1;
            new_hash = (new_hash + ((ll)(S[i][j + 1] - 'a') * pows[len - 1 - j]) % mod1 + mod1) % mod1;
            new_hash = (new_hash - ((ll)(S[i][j + 1] - 'a') * pows[len - 1 - (j + 1)]) % mod1 + mod1) % mod1;
            new_hash = (new_hash + ((ll)(S[i][j] - 'a') * pows[len - 1 - (j + 1)]) % mod1 + mod1) % mod1;
            //debug(new_hash);
            if (mp[pll(new_hash, S[i].size())]){
                pos = true;
            }
        }
        if (pos) cout << "Yes" << endl;
        else cout << "No" << endl;
        mp[pll(hashs, S[i].size())]++;
    }
}
0