結果

問題 No.2102 [Cherry Alpha *] Conditional Reflection
ユーザー umezoumezo
提出日時 2022-10-15 00:44:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 821 bytes
コンパイル時間 2,537 ms
コンパイル使用メモリ 212,180 KB
実行使用メモリ 54,656 KB
最終ジャッジ日時 2024-06-26 18:45:10
合計ジャッジ時間 56,021 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,376 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 572 ms
25,984 KB
testcase_03 WA -
testcase_04 AC 601 ms
25,600 KB
testcase_05 AC 388 ms
16,256 KB
testcase_06 AC 635 ms
27,004 KB
testcase_07 AC 861 ms
47,488 KB
testcase_08 AC 176 ms
8,064 KB
testcase_09 AC 723 ms
38,400 KB
testcase_10 AC 254 ms
11,904 KB
testcase_11 WA -
testcase_12 AC 474 ms
23,808 KB
testcase_13 AC 927 ms
43,868 KB
testcase_14 AC 473 ms
20,664 KB
testcase_15 AC 707 ms
28,928 KB
testcase_16 AC 1,074 ms
44,672 KB
testcase_17 AC 511 ms
31,744 KB
testcase_18 AC 915 ms
46,592 KB
testcase_19 WA -
testcase_20 AC 1,010 ms
46,712 KB
testcase_21 WA -
testcase_22 AC 1,244 ms
50,688 KB
testcase_23 AC 1,221 ms
50,588 KB
testcase_24 AC 1,218 ms
50,552 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 1,196 ms
50,668 KB
testcase_29 AC 1,214 ms
50,680 KB
testcase_30 WA -
testcase_31 AC 1,229 ms
50,816 KB
testcase_32 AC 1,203 ms
50,684 KB
testcase_33 AC 1,190 ms
50,560 KB
testcase_34 AC 1,240 ms
50,816 KB
testcase_35 WA -
testcase_36 AC 1,214 ms
50,688 KB
testcase_37 AC 1,235 ms
50,664 KB
testcase_38 AC 1,211 ms
50,520 KB
testcase_39 AC 1,226 ms
50,560 KB
testcase_40 AC 1,232 ms
50,672 KB
testcase_41 AC 1,218 ms
50,616 KB
testcase_42 AC 694 ms
21,120 KB
testcase_43 AC 689 ms
21,268 KB
testcase_44 AC 701 ms
21,248 KB
testcase_45 AC 694 ms
21,248 KB
testcase_46 AC 668 ms
21,120 KB
testcase_47 AC 1,051 ms
52,736 KB
testcase_48 AC 1,062 ms
52,736 KB
testcase_49 AC 1,043 ms
52,736 KB
testcase_50 AC 1,031 ms
52,736 KB
testcase_51 AC 1,051 ms
52,608 KB
testcase_52 RE -
testcase_53 RE -
testcase_54 RE -
testcase_55 AC 1,154 ms
49,536 KB
testcase_56 AC 1,132 ms
49,536 KB
testcase_57 AC 1,093 ms
49,408 KB
testcase_58 RE -
testcase_59 WA -
testcase_60 AC 151 ms
7,424 KB
testcase_61 AC 1,094 ms
49,408 KB
testcase_62 AC 15 ms
5,376 KB
testcase_63 AC 185 ms
7,680 KB
testcase_64 AC 174 ms
7,424 KB
testcase_65 AC 219 ms
7,936 KB
testcase_66 AC 1,062 ms
49,024 KB
testcase_67 AC 295 ms
11,008 KB
testcase_68 AC 55 ms
5,376 KB
testcase_69 AC 294 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;
 
#include<bits/stdc++.h>
using namespace std;

ll MOD=698468298355739;

int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  
  random_device rd;
  mt19937_64 rnd(rd());    
  uniform_int_distribution<ll> dist_n(100000001,99999999999999);
  
  int n;
  cin>>n;
  vector<string> S(n);
  rep(i,n) cin>>S[i];
  
  vector<ll> A(n);
  rep(i,n){
    ll a=dist_n(rnd);
    A[i]=a;
  }
  
  set<ll> s;
  rep(i,n){
    ll sum=0;
    int k=S[i].size();
    rep(j,k) sum=(sum+A[j]*S[i][j])%MOD;
    if(s.count(sum)) cout<<"Yes"<<endl;
    else cout<<"No"<<endl;
    s.insert(sum);
    rep(j,k-1){
      s.insert((sum-A[j]*S[i][j]-A[j+1]*S[i][j+1]+A[j]*S[i][j+1]+A[j+1]*S[i][j]+2*MOD)%MOD);
    }
  }

  return 0;
}
0