結果

問題 No.2102 [Cherry Alpha *] Conditional Reflection
ユーザー umezoumezo
提出日時 2022-10-15 01:00:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,118 bytes
コンパイル時間 2,158 ms
コンパイル使用メモリ 214,408 KB
実行使用メモリ 71,012 KB
最終ジャッジ日時 2024-06-26 18:54:21
合計ジャッジ時間 57,850 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 440 ms
32,668 KB
testcase_03 AC 660 ms
44,800 KB
testcase_04 AC 411 ms
32,280 KB
testcase_05 AC 196 ms
19,660 KB
testcase_06 AC 472 ms
34,224 KB
testcase_07 AC 940 ms
61,440 KB
testcase_08 AC 44 ms
9,144 KB
testcase_09 AC 727 ms
49,580 KB
testcase_10 AC 124 ms
14,388 KB
testcase_11 AC 185 ms
19,968 KB
testcase_12 AC 373 ms
29,952 KB
testcase_13 AC 882 ms
56,696 KB
testcase_14 AC 313 ms
25,776 KB
testcase_15 AC 535 ms
36,460 KB
testcase_16 AC 979 ms
57,408 KB
testcase_17 AC 564 ms
40,832 KB
testcase_18 AC 958 ms
60,444 KB
testcase_19 AC 220 ms
20,224 KB
testcase_20 AC 1,109 ms
60,300 KB
testcase_21 AC 81 ms
13,148 KB
testcase_22 AC 1,135 ms
65,412 KB
testcase_23 AC 1,127 ms
65,452 KB
testcase_24 AC 1,133 ms
65,348 KB
testcase_25 AC 1,156 ms
65,440 KB
testcase_26 AC 1,269 ms
65,308 KB
testcase_27 AC 1,074 ms
65,424 KB
testcase_28 AC 1,038 ms
65,356 KB
testcase_29 AC 1,103 ms
65,324 KB
testcase_30 AC 1,119 ms
65,424 KB
testcase_31 AC 1,150 ms
65,484 KB
testcase_32 AC 1,108 ms
65,408 KB
testcase_33 AC 1,129 ms
65,368 KB
testcase_34 AC 1,139 ms
65,520 KB
testcase_35 AC 1,138 ms
65,380 KB
testcase_36 AC 1,250 ms
65,460 KB
testcase_37 AC 1,123 ms
65,472 KB
testcase_38 AC 1,098 ms
65,400 KB
testcase_39 AC 1,120 ms
65,404 KB
testcase_40 AC 1,258 ms
65,352 KB
testcase_41 AC 1,122 ms
65,416 KB
testcase_42 AC 749 ms
26,588 KB
testcase_43 AC 778 ms
26,656 KB
testcase_44 AC 757 ms
26,752 KB
testcase_45 AC 762 ms
26,744 KB
testcase_46 AC 780 ms
26,752 KB
testcase_47 AC 1,242 ms
68,864 KB
testcase_48 AC 1,228 ms
68,864 KB
testcase_49 AC 1,231 ms
68,840 KB
testcase_50 AC 1,210 ms
68,712 KB
testcase_51 AC 1,223 ms
68,736 KB
testcase_52 RE -
testcase_53 RE -
testcase_54 RE -
testcase_55 AC 993 ms
64,384 KB
testcase_56 AC 979 ms
64,512 KB
testcase_57 AC 971 ms
64,256 KB
testcase_58 RE -
testcase_59 AC 1,236 ms
71,012 KB
testcase_60 AC 41 ms
8,192 KB
testcase_61 AC 1,078 ms
64,256 KB
testcase_62 AC 11 ms
6,944 KB
testcase_63 AC 209 ms
8,064 KB
testcase_64 AC 188 ms
8,064 KB
testcase_65 AC 247 ms
8,320 KB
testcase_66 AC 1,512 ms
63,872 KB
testcase_67 AC 125 ms
12,604 KB
testcase_68 AC 121 ms
6,940 KB
testcase_69 AC 118 ms
12,624 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=465290608031;
ll MOD2=653371827107;

int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  
  random_device rd;
  mt19937_64 rnd(rd());    
  uniform_int_distribution<ll> dist_n1(1000001,999999999),dist_n2(1000001,999999999);
  
  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"<<'\n';
    else cout<<"No"<<'\n';
    s.insert({sum1,sum2});
    rep(j,k-1){
      ll a=(sum1-A[j]*S[i][j]%MOD1-A[j+1]*S[i][j+1]%MOD1+A[j]*S[i][j+1]+A[j+1]*S[i][j]+2*MOD1)%MOD1;
      ll b=(sum2-B[j]*S[i][j]%MOD2-B[j+1]*S[i][j+1]%MOD2+B[j]*S[i][j+1]+B[j+1]*S[i][j]+2*MOD2)%MOD2;
      s.insert({a,b});
    }
  }

  return 0;
}
0