結果

問題 No.2102 [Cherry Alpha *] Conditional Reflection
ユーザー AngrySadEightAngrySadEight
提出日時 2022-10-15 00:36:07
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 3,868 bytes
コンパイル時間 4,413 ms
コンパイル使用メモリ 269,204 KB
実行使用メモリ 56,572 KB
最終ジャッジ日時 2023-09-09 01:18:26
合計ジャッジ時間 49,485 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
10,920 KB
testcase_01 AC 10 ms
10,852 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
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 WA -
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 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 AC 592 ms
53,236 KB
testcase_53 AC 583 ms
53,248 KB
testcase_54 AC 595 ms
52,956 KB
testcase_55 AC 740 ms
53,992 KB
testcase_56 WA -
testcase_57 WA -
testcase_58 AC 71 ms
12,276 KB
testcase_59 WA -
testcase_60 AC 177 ms
14,116 KB
testcase_61 AC 724 ms
53,980 KB
testcase_62 AC 21 ms
11,268 KB
testcase_63 AC 163 ms
15,008 KB
testcase_64 AC 161 ms
14,760 KB
testcase_65 AC 176 ms
15,020 KB
testcase_66 AC 727 ms
53,636 KB
testcase_67 AC 345 ms
17,196 KB
testcase_68 AC 76 ms
12,940 KB
testcase_69 AC 346 ms
17,248 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;
}

ll to_single_val(ll hashs, ll len){
    return hashs * 1000000 + len;
}

int main(){
    int N;
    cin >> N;
    vs S(N);
    unordered_map<ll, ll> mp;
    rep(i,N) cin >> S[i];
    ll h1 = 1000;
    for (ll i = 0; i < N; i++){
        ll hashs = mk_hash(S[i], h1, mod1);
        //debug(hashs);
        //mp[to_single_val(hashs, len)]++;
        //mp[pll(hashs, S[i].size())]++;
    }
    vl pows(1000002);
    pows[0] = 1;
    for (ll i = 0; i < 1000001; i++){
        pows[i + 1] = (pows[i] * h1) % mod1;
    }
    for (ll i = 0; i < N; i++){
        bool pos = false;
        ll hashs = mk_hash(S[i], h1, mod1);
        if (mp[to_single_val(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[to_single_val(new_hash, S[i].size())]){
                pos = true;
            }
            /*if (mp[pll(new_hash, S[i].size())]){
                pos = true;
            }*/
        }
        if (pos) cout << "Yes" << endl;
        else cout << "No" << endl;
        mp[to_single_val(hashs, S[i].size())]++;
    }
}
0