結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 382 ms
32,524 KB
testcase_03 AC 574 ms
44,904 KB
testcase_04 AC 373 ms
32,304 KB
testcase_05 AC 166 ms
19,620 KB
testcase_06 AC 375 ms
34,240 KB
testcase_07 AC 797 ms
61,440 KB
testcase_08 AC 41 ms
9,204 KB
testcase_09 AC 581 ms
49,476 KB
testcase_10 AC 107 ms
14,416 KB
testcase_11 AC 143 ms
19,840 KB
testcase_12 AC 301 ms
30,160 KB
testcase_13 AC 725 ms
56,716 KB
testcase_14 AC 255 ms
25,780 KB
testcase_15 AC 425 ms
36,444 KB
testcase_16 AC 792 ms
57,320 KB
testcase_17 AC 474 ms
40,832 KB
testcase_18 AC 773 ms
60,416 KB
testcase_19 AC 179 ms
20,144 KB
testcase_20 AC 890 ms
60,364 KB
testcase_21 AC 70 ms
13,140 KB
testcase_22 AC 915 ms
65,440 KB
testcase_23 AC 943 ms
65,272 KB
testcase_24 AC 961 ms
65,296 KB
testcase_25 AC 1,024 ms
65,376 KB
testcase_26 AC 1,210 ms
65,332 KB
testcase_27 AC 1,083 ms
65,452 KB
testcase_28 AC 1,064 ms
65,368 KB
testcase_29 AC 1,058 ms
65,236 KB
testcase_30 AC 1,075 ms
65,236 KB
testcase_31 AC 1,038 ms
65,388 KB
testcase_32 AC 1,030 ms
65,464 KB
testcase_33 AC 989 ms
65,368 KB
testcase_34 AC 966 ms
65,404 KB
testcase_35 AC 1,035 ms
65,436 KB
testcase_36 AC 1,194 ms
65,484 KB
testcase_37 AC 1,013 ms
65,440 KB
testcase_38 AC 972 ms
65,332 KB
testcase_39 AC 1,015 ms
65,416 KB
testcase_40 AC 1,144 ms
65,332 KB
testcase_41 AC 1,025 ms
65,372 KB
testcase_42 AC 679 ms
26,720 KB
testcase_43 AC 662 ms
26,752 KB
testcase_44 AC 699 ms
26,760 KB
testcase_45 AC 702 ms
26,592 KB
testcase_46 AC 668 ms
26,684 KB
testcase_47 AC 1,147 ms
68,736 KB
testcase_48 AC 1,159 ms
68,864 KB
testcase_49 AC 1,152 ms
68,736 KB
testcase_50 AC 1,152 ms
68,736 KB
testcase_51 AC 1,182 ms
68,864 KB
testcase_52 RE -
testcase_53 RE -
testcase_54 RE -
testcase_55 AC 950 ms
64,512 KB
testcase_56 AC 916 ms
64,512 KB
testcase_57 AC 905 ms
64,384 KB
testcase_58 RE -
testcase_59 AC 1,097 ms
70,744 KB
testcase_60 AC 33 ms
8,352 KB
testcase_61 AC 933 ms
64,384 KB
testcase_62 AC 10 ms
6,944 KB
testcase_63 AC 172 ms
8,192 KB
testcase_64 AC 147 ms
8,064 KB
testcase_65 AC 197 ms
8,448 KB
testcase_66 AC 1,303 ms
63,872 KB
testcase_67 AC 92 ms
12,664 KB
testcase_68 AC 79 ms
6,940 KB
testcase_69 AC 88 ms
12,620 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]-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