結果

問題 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,747 ms
コンパイル使用メモリ 269,748 KB
実行使用メモリ 75,840 KB
最終ジャッジ日時 2023-09-09 01:14:24
合計ジャッジ時間 73,777 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
10,724 KB
testcase_01 AC 10 ms
10,888 KB
testcase_02 AC 664 ms
38,304 KB
testcase_03 AC 880 ms
50,312 KB
testcase_04 WA -
testcase_05 AC 438 ms
24,956 KB
testcase_06 AC 712 ms
39,356 KB
testcase_07 WA -
testcase_08 AC 195 ms
15,252 KB
testcase_09 WA -
testcase_10 AC 288 ms
20,420 KB
testcase_11 AC 290 ms
26,704 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 534 ms
31,024 KB
testcase_15 AC 788 ms
41,072 KB
testcase_16 WA -
testcase_17 AC 651 ms
48,116 KB
testcase_18 WA -
testcase_19 AC 380 ms
26,352 KB
testcase_20 WA -
testcase_21 AC 319 ms
18,024 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,302 ms
70,144 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 881 ms
32,636 KB
testcase_43 AC 885 ms
32,688 KB
testcase_44 AC 894 ms
32,560 KB
testcase_45 AC 901 ms
32,744 KB
testcase_46 AC 937 ms
32,832 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 AC 1,137 ms
72,060 KB
testcase_53 AC 1,141 ms
71,928 KB
testcase_54 AC 1,122 ms
72,056 KB
testcase_55 AC 1,532 ms
72,892 KB
testcase_56 AC 1,507 ms
72,844 KB
testcase_57 AC 1,462 ms
72,920 KB
testcase_58 AC 57 ms
12,296 KB
testcase_59 AC 1,457 ms
75,432 KB
testcase_60 AC 168 ms
14,168 KB
testcase_61 AC 1,313 ms
72,864 KB
testcase_62 AC 24 ms
11,364 KB
testcase_63 AC 257 ms
15,012 KB
testcase_64 AC 234 ms
14,804 KB
testcase_65 AC 285 ms
15,544 KB
testcase_66 WA -
testcase_67 AC 332 ms
17,240 KB
testcase_68 AC 66 ms
12,936 KB
testcase_69 AC 321 ms
16,992 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