結果

問題 No.2102 [Cherry Alpha *] Conditional Reflection
ユーザー umezoumezo
提出日時 2022-10-15 00:51:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,114 bytes
コンパイル時間 2,142 ms
コンパイル使用メモリ 214,948 KB
実行使用メモリ 70,852 KB
最終ジャッジ日時 2024-06-26 18:47:34
合計ジャッジ時間 63,820 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 638 ms
32,652 KB
testcase_03 AC 825 ms
44,940 KB
testcase_04 AC 622 ms
32,252 KB
testcase_05 AC 390 ms
19,736 KB
testcase_06 AC 665 ms
34,168 KB
testcase_07 AC 889 ms
61,440 KB
testcase_08 AC 168 ms
9,216 KB
testcase_09 AC 752 ms
49,564 KB
testcase_10 AC 250 ms
14,396 KB
testcase_11 AC 246 ms
19,968 KB
testcase_12 AC 510 ms
30,024 KB
testcase_13 AC 1,019 ms
56,676 KB
testcase_14 AC 499 ms
25,768 KB
testcase_15 AC 749 ms
36,432 KB
testcase_16 AC 1,149 ms
57,508 KB
testcase_17 AC 552 ms
40,960 KB
testcase_18 AC 994 ms
60,544 KB
testcase_19 AC 348 ms
20,260 KB
testcase_20 AC 1,268 ms
60,340 KB
testcase_21 AC 290 ms
13,148 KB
testcase_22 AC 1,322 ms
65,388 KB
testcase_23 AC 1,300 ms
65,372 KB
testcase_24 AC 1,304 ms
65,456 KB
testcase_25 AC 1,342 ms
65,468 KB
testcase_26 AC 1,469 ms
65,412 KB
testcase_27 AC 1,320 ms
65,400 KB
testcase_28 AC 1,294 ms
65,352 KB
testcase_29 AC 1,281 ms
65,384 KB
testcase_30 AC 1,334 ms
65,420 KB
testcase_31 AC 1,296 ms
65,432 KB
testcase_32 AC 1,329 ms
65,364 KB
testcase_33 AC 1,304 ms
65,396 KB
testcase_34 AC 1,278 ms
65,360 KB
testcase_35 AC 1,305 ms
65,388 KB
testcase_36 AC 1,428 ms
65,464 KB
testcase_37 AC 1,260 ms
65,460 KB
testcase_38 AC 1,300 ms
65,400 KB
testcase_39 AC 1,311 ms
65,392 KB
testcase_40 AC 1,461 ms
65,340 KB
testcase_41 AC 1,345 ms
65,240 KB
testcase_42 AC 903 ms
26,720 KB
testcase_43 AC 891 ms
26,624 KB
testcase_44 AC 854 ms
26,688 KB
testcase_45 AC 837 ms
26,560 KB
testcase_46 AC 781 ms
26,788 KB
testcase_47 AC 1,167 ms
68,736 KB
testcase_48 AC 1,158 ms
68,864 KB
testcase_49 AC 1,173 ms
68,864 KB
testcase_50 AC 1,205 ms
68,864 KB
testcase_51 AC 1,218 ms
68,864 KB
testcase_52 RE -
testcase_53 RE -
testcase_54 RE -
testcase_55 AC 883 ms
64,512 KB
testcase_56 AC 828 ms
64,384 KB
testcase_57 AC 775 ms
64,384 KB
testcase_58 RE -
testcase_59 AC 1,331 ms
70,852 KB
testcase_60 AC 152 ms
8,244 KB
testcase_61 AC 867 ms
64,384 KB
testcase_62 AC 16 ms
6,940 KB
testcase_63 AC 231 ms
8,320 KB
testcase_64 AC 206 ms
8,064 KB
testcase_65 AC 266 ms
8,448 KB
testcase_66 AC 1,255 ms
64,000 KB
testcase_67 AC 312 ms
12,620 KB
testcase_68 AC 80 ms
6,940 KB
testcase_69 AC 307 ms
12,636 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 MOD1=698468298355739;
ll MOD2=301781318234953;

int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  
  random_device rd;
  mt19937_64 rnd(rd());    
  uniform_int_distribution<ll> dist_n1(100000001,999999999999),dist_n2(100000001,999999999999);
  
  int n;
  cin>>n;
  vector<string> S(n);
  rep(i,n) cin>>S[i];
  
  vector<ll> A(n),B(n);
  rep(i,n){
    ll a=dist_n1(rnd),b=dist_n2(rnd);
    A[i]=a,B[i]=b;
  }
  
  set<pair<ll,ll>> s;
  rep(i,n){
    ll sum1=0,sum2=0;
    int k=S[i].size();
    rep(j,k){
      sum1=(sum1+A[j]*S[i][j]%MOD1)%MOD1;
      sum2=(sum2+B[j]*S[i][j]%MOD2)%MOD2;
    }
    if(s.count({sum1,sum2})) cout<<"Yes"<<endl;
    else cout<<"No"<<endl;
    s.insert({sum1,sum2});
    rep(j,k-1){
      ll a=(sum1-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*MOD1)%MOD1;
      ll b=(sum2-B[j]*S[i][j]-B[j+1]*S[i][j+1]+B[j]*S[i][j+1]+B[j+1]*S[i][j]+2*MOD2)%MOD2;
      s.insert({a,b});
    }
  }

  return 0;
}
0