結果

問題 No.2102 [Cherry Alpha *] Conditional Reflection
ユーザー milanis48663220milanis48663220
提出日時 2022-10-14 23:24:20
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,326 bytes
コンパイル時間 1,382 ms
コンパイル使用メモリ 124,472 KB
実行使用メモリ 16,608 KB
最終ジャッジ日時 2023-09-08 23:47:46
合計ジャッジ時間 29,343 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
7,240 KB
testcase_01 AC 9 ms
7,204 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 168 ms
7,776 KB
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 AC 278 ms
7,780 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 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 23 ms
7,908 KB
testcase_53 AC 22 ms
8,060 KB
testcase_54 AC 22 ms
8,196 KB
testcase_55 WA -
testcase_56 AC 85 ms
7,468 KB
testcase_57 WA -
testcase_58 AC 23 ms
8,080 KB
testcase_59 WA -
testcase_60 AC 155 ms
7,324 KB
testcase_61 AC 84 ms
7,276 KB
testcase_62 AC 19 ms
7,620 KB
testcase_63 AC 85 ms
7,284 KB
testcase_64 AC 86 ms
7,288 KB
testcase_65 AC 90 ms
7,408 KB
testcase_66 AC 80 ms
7,276 KB
testcase_67 AC 278 ms
7,544 KB
testcase_68 AC 29 ms
7,444 KB
testcase_69 AC 280 ms
7,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <iomanip>
#include <vector>
#include <queue>
#include <deque>
#include <set>
#include <map>
#include <tuple>
#include <cmath>
#include <numeric>
#include <functional>
#include <cassert>
#include <atcoder/modint>

#define debug_value(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << #x << "=" << x << endl;
#define debug(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << x << endl;

template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }

using namespace std;
typedef long long ll;

template<typename T>
vector<vector<T>> vec2d(int n, int m, T v){
    return vector<vector<T>>(n, vector<T>(m, v));
}

template<typename T>
vector<vector<vector<T>>> vec3d(int n, int m, int k, T v){
    return vector<vector<vector<T>>>(n, vector<vector<T>>(m, vector<T>(k, v)));
}

template<typename T>
void print_vector(vector<T> v, char delimiter=' '){
    if(v.empty()) {
        cout << endl;
        return;
    }
    for(int i = 0; i+1 < v.size(); i++) cout << v[i] << delimiter;
    cout << v.back() << endl;
}

using mint = atcoder::modint998244353;
int p = 10007;
const int N = 1000000;

mint pw[N+1];

void init(){
    pw[0] = 1;
    for(int i = 1; i <= N; i++) pw[i] = pw[i-1]*p;
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout << setprecision(10) << fixed;
    init();
    int n; cin >> n;
    set<int> st;
    for(int i = 0; i < n; i++){
        string s; cin >> s;
        mint h = 0;
        int m = s.size();
        for(int j = 0; j < m; j++){
            h += pw[j]*(s[j]-'a'+1);
        }
        bool ok = false;
        if(st.count(h.val())){
            ok = true;
        }else{
            for(int j = 0; j+1 < m; j++){
                mint new_h = h;
                new_h -= pw[j]*(s[j]-'a'+1);
                new_h += pw[j+1]*(s[j]-'a'+1);
                new_h -= pw[j+1]*(s[j+1]-'a'+1);
                new_h += pw[j]*(s[j+1]-'a'+1);
                if(st.count(new_h.val())){
                    ok = true;
                    break;
                }
            }
        }

        st.insert(h.val());
        if(ok) cout << "Yes" << endl;
        else cout << "No" << endl;
    }
}
0