結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 602 ms
32,692 KB
testcase_03 AC 825 ms
44,864 KB
testcase_04 AC 644 ms
32,268 KB
testcase_05 AC 423 ms
19,664 KB
testcase_06 AC 731 ms
34,172 KB
testcase_07 AC 999 ms
61,440 KB
testcase_08 AC 172 ms
9,336 KB
testcase_09 AC 887 ms
49,588 KB
testcase_10 AC 267 ms
14,388 KB
testcase_11 AC 251 ms
19,968 KB
testcase_12 AC 518 ms
30,000 KB
testcase_13 AC 951 ms
56,740 KB
testcase_14 AC 473 ms
25,808 KB
testcase_15 AC 710 ms
36,424 KB
testcase_16 AC 1,211 ms
57,472 KB
testcase_17 AC 572 ms
40,832 KB
testcase_18 AC 1,004 ms
60,544 KB
testcase_19 AC 332 ms
20,216 KB
testcase_20 AC 1,241 ms
60,452 KB
testcase_21 AC 286 ms
13,208 KB
testcase_22 AC 1,336 ms
65,400 KB
testcase_23 AC 1,373 ms
65,392 KB
testcase_24 AC 1,298 ms
65,332 KB
testcase_25 AC 1,283 ms
65,352 KB
testcase_26 AC 1,451 ms
65,436 KB
testcase_27 AC 1,306 ms
65,468 KB
testcase_28 AC 1,327 ms
65,388 KB
testcase_29 AC 1,316 ms
65,508 KB
testcase_30 AC 1,304 ms
65,360 KB
testcase_31 AC 1,292 ms
65,500 KB
testcase_32 AC 1,368 ms
65,432 KB
testcase_33 AC 1,358 ms
65,400 KB
testcase_34 AC 1,361 ms
65,404 KB
testcase_35 AC 1,347 ms
65,240 KB
testcase_36 AC 1,418 ms
65,420 KB
testcase_37 AC 1,289 ms
65,484 KB
testcase_38 AC 1,283 ms
65,396 KB
testcase_39 AC 1,301 ms
65,396 KB
testcase_40 AC 1,491 ms
65,348 KB
testcase_41 AC 1,310 ms
65,508 KB
testcase_42 AC 844 ms
26,752 KB
testcase_43 AC 832 ms
26,804 KB
testcase_44 AC 850 ms
26,708 KB
testcase_45 AC 841 ms
26,740 KB
testcase_46 AC 834 ms
26,732 KB
testcase_47 AC 1,215 ms
68,992 KB
testcase_48 AC 1,217 ms
68,736 KB
testcase_49 AC 1,195 ms
68,864 KB
testcase_50 AC 1,213 ms
68,864 KB
testcase_51 AC 1,150 ms
68,864 KB
testcase_52 RE -
testcase_53 RE -
testcase_54 RE -
testcase_55 AC 991 ms
64,384 KB
testcase_56 AC 934 ms
64,512 KB
testcase_57 AC 878 ms
64,384 KB
testcase_58 RE -
testcase_59 AC 1,418 ms
70,836 KB
testcase_60 AC 152 ms
8,244 KB
testcase_61 AC 1,011 ms
64,384 KB
testcase_62 AC 17 ms
6,944 KB
testcase_63 AC 233 ms
8,192 KB
testcase_64 AC 216 ms
8,064 KB
testcase_65 AC 265 ms
8,448 KB
testcase_66 AC 1,391 ms
64,000 KB
testcase_67 AC 315 ms
12,656 KB
testcase_68 AC 81 ms
6,940 KB
testcase_69 AC 310 ms
12,628 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=25297664415509;
ll MOD2=51079899000569;

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,99999999999),dist_n2(100000001,99999999999);
  
  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