結果

問題 No.2102 [Cherry Alpha *] Conditional Reflection
ユーザー fumofumofunifumofumofuni
提出日時 2022-10-14 23:15:28
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 872 ms / 3,000 ms
コード長 2,241 bytes
コンパイル時間 2,281 ms
コンパイル使用メモリ 210,732 KB
実行使用メモリ 31,244 KB
最終ジャッジ日時 2024-06-26 17:06:25
合計ジャッジ時間 38,718 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 13 ms
18,784 KB
testcase_01 AC 14 ms
18,912 KB
testcase_02 AC 439 ms
24,384 KB
testcase_03 AC 510 ms
26,136 KB
testcase_04 AC 472 ms
24,272 KB
testcase_05 AC 358 ms
21,884 KB
testcase_06 AC 514 ms
24,668 KB
testcase_07 AC 323 ms
22,160 KB
testcase_08 AC 188 ms
19,148 KB
testcase_09 AC 433 ms
25,328 KB
testcase_10 AC 236 ms
20,964 KB
testcase_11 AC 162 ms
21,808 KB
testcase_12 AC 365 ms
23,832 KB
testcase_13 AC 568 ms
27,016 KB
testcase_14 AC 411 ms
23,052 KB
testcase_15 AC 585 ms
25,180 KB
testcase_16 AC 739 ms
28,472 KB
testcase_17 AC 216 ms
21,420 KB
testcase_18 AC 448 ms
24,008 KB
testcase_19 AC 281 ms
22,176 KB
testcase_20 AC 642 ms
27,452 KB
testcase_21 AC 311 ms
19,496 KB
testcase_22 AC 831 ms
29,208 KB
testcase_23 AC 816 ms
29,216 KB
testcase_24 AC 813 ms
29,176 KB
testcase_25 AC 821 ms
29,380 KB
testcase_26 AC 828 ms
29,212 KB
testcase_27 AC 851 ms
29,160 KB
testcase_28 AC 828 ms
29,156 KB
testcase_29 AC 807 ms
29,216 KB
testcase_30 AC 824 ms
29,292 KB
testcase_31 AC 797 ms
29,216 KB
testcase_32 AC 814 ms
29,244 KB
testcase_33 AC 842 ms
29,180 KB
testcase_34 AC 798 ms
29,156 KB
testcase_35 AC 859 ms
29,152 KB
testcase_36 AC 822 ms
29,264 KB
testcase_37 AC 872 ms
29,216 KB
testcase_38 AC 815 ms
29,340 KB
testcase_39 AC 812 ms
29,296 KB
testcase_40 AC 815 ms
29,308 KB
testcase_41 AC 792 ms
29,372 KB
testcase_42 AC 545 ms
25,908 KB
testcase_43 AC 560 ms
25,828 KB
testcase_44 AC 561 ms
25,832 KB
testcase_45 AC 545 ms
25,900 KB
testcase_46 AC 568 ms
25,796 KB
testcase_47 AC 389 ms
23,092 KB
testcase_48 AC 391 ms
22,992 KB
testcase_49 AC 394 ms
23,160 KB
testcase_50 AC 390 ms
22,952 KB
testcase_51 AC 393 ms
23,180 KB
testcase_52 AC 48 ms
20,928 KB
testcase_53 AC 48 ms
20,932 KB
testcase_54 AC 49 ms
20,928 KB
testcase_55 AC 112 ms
18,992 KB
testcase_56 AC 111 ms
19,012 KB
testcase_57 AC 113 ms
18,880 KB
testcase_58 AC 49 ms
20,448 KB
testcase_59 AC 861 ms
31,244 KB
testcase_60 AC 170 ms
18,788 KB
testcase_61 AC 112 ms
19,020 KB
testcase_62 AC 26 ms
19,116 KB
testcase_63 AC 174 ms
18,816 KB
testcase_64 AC 176 ms
18,844 KB
testcase_65 AC 222 ms
18,912 KB
testcase_66 AC 112 ms
18,996 KB
testcase_67 AC 327 ms
18,832 KB
testcase_68 AC 56 ms
19,072 KB
testcase_69 AC 319 ms
18,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
//#pragma GCC optimize("Ofast")

#define rep(i,n) for(ll i=0;i<n;i++)
#define repl(i,l,r) for(ll i=(l);i<(r);i++)
#define per(i,n) for(ll i=(n)-1;i>=0;i--)
#define perl(i,r,l) for(ll i=r-1;i>=l;i--)
#define fi first
#define se second
#define pb push_back
#define ins insert
#define pqueue(x) priority_queue<x,vector<x>,greater<x>>
#define all(x) (x).begin(),(x).end()
#define CST(x) cout<<fixed<<setprecision(x)
#define vtpl(x,y,z) vector<tuple<x,y,z>>
#define rev(x) reverse(x);
using ll=long long;
using vl=vector<ll>;
using vvl=vector<vector<ll>>;
using pl=pair<ll,ll>;
using vpl=vector<pl>;
using vvpl=vector<vpl>;
const ll MOD=1000000007;
const ll MOD9=998244353;
const int inf=1e9+10;
const ll INF=4e18;
const ll dy[9]={1,0,-1,0,1,1,-1,-1,0};
const ll dx[9]={0,1,0,-1,1,-1,1,-1,0};
template<class T> inline bool chmin(T& a, T b) {
    if (a > b) {
        a = b;
        return true;
    }
    return false;
}
template<class T> inline bool chmax(T& a, T b) {
    if (a < b) {
        a = b;
        return true;
    }
    return false;
}
static const int base1 = 1007, base2 = 2009;
static const int mod1 = 1000000007, mod2 = 1000000009;
ll safemod(ll a,ll m){
    return (a%m+m)%m;
}
int main(){
    ll m=1e6+10;
    vl power1(m,1),power2(m,1);
    rep(i,m-1){
        power1[i+1]=power1[i]*base1%mod1;
        power2[i+1]=power2[i]*base2%mod2;
    }
    set<pl> st;
    ll n;cin >> n;
    while(n--){
        string s;cin >> s;
        ll p=s.size();
        pl q={0,0};
        rep(i,p){
            q.first=(q.first+power1[i]*s[i])%mod1;
            q.second=(q.second+power2[i]*s[i])%mod2;
        }
        bool ok=st.count(q);
        rep(i,p-1){
            pl f=q;
            f.first-=power1[i]*s[i];
            f.first-=power1[i+1]*s[i+1];
            f.second-=power2[i]*s[i];
            f.second-=power2[i+1]*s[i+1];
            f.first+=power1[i]*s[i+1];
            f.first+=power1[i+1]*s[i];
            f.second+=power2[i+1]*s[i];
            f.second+=power2[i]*s[i+1];
            f.first=safemod(f.first,mod1);
            f.second=safemod(f.second,mod2);
            ok|=st.count(f);
        }
        st.insert(q);
        cout << (ok? "Yes":"No") << endl;
    }

}
0