結果

問題 No.2102 [Cherry Alpha *] Conditional Reflection
ユーザー butsurizukibutsurizuki
提出日時 2022-10-07 10:18:35
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,032 ms / 3,000 ms
コード長 2,252 bytes
コンパイル時間 8,295 ms
コンパイル使用メモリ 337,520 KB
実行使用メモリ 59,856 KB
最終ジャッジ日時 2024-06-02 01:18:15
合計ジャッジ時間 53,847 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 314 ms
28,104 KB
testcase_03 AC 466 ms
38,372 KB
testcase_04 AC 288 ms
28,052 KB
testcase_05 AC 135 ms
17,888 KB
testcase_06 AC 305 ms
29,704 KB
testcase_07 AC 751 ms
50,872 KB
testcase_08 AC 30 ms
8,916 KB
testcase_09 AC 528 ms
41,776 KB
testcase_10 AC 86 ms
13,320 KB
testcase_11 AC 125 ms
17,208 KB
testcase_12 AC 245 ms
26,040 KB
testcase_13 AC 683 ms
47,528 KB
testcase_14 AC 198 ms
22,784 KB
testcase_15 AC 324 ms
31,760 KB
testcase_16 AC 662 ms
49,152 KB
testcase_17 AC 428 ms
34,124 KB
testcase_18 AC 729 ms
50,292 KB
testcase_19 AC 133 ms
17,860 KB
testcase_20 AC 686 ms
50,368 KB
testcase_21 AC 56 ms
12,688 KB
testcase_22 AC 813 ms
55,012 KB
testcase_23 AC 772 ms
55,224 KB
testcase_24 AC 807 ms
54,916 KB
testcase_25 AC 835 ms
55,708 KB
testcase_26 AC 789 ms
55,996 KB
testcase_27 AC 772 ms
56,516 KB
testcase_28 AC 828 ms
55,464 KB
testcase_29 AC 820 ms
56,136 KB
testcase_30 AC 801 ms
54,912 KB
testcase_31 AC 812 ms
54,888 KB
testcase_32 AC 822 ms
56,668 KB
testcase_33 AC 805 ms
55,232 KB
testcase_34 AC 833 ms
56,340 KB
testcase_35 AC 851 ms
55,436 KB
testcase_36 AC 868 ms
55,676 KB
testcase_37 AC 878 ms
55,008 KB
testcase_38 AC 863 ms
55,060 KB
testcase_39 AC 884 ms
55,472 KB
testcase_40 AC 872 ms
55,052 KB
testcase_41 AC 921 ms
55,076 KB
testcase_42 AC 434 ms
27,024 KB
testcase_43 AC 459 ms
26,356 KB
testcase_44 AC 467 ms
25,788 KB
testcase_45 AC 482 ms
26,220 KB
testcase_46 AC 453 ms
25,488 KB
testcase_47 AC 1,032 ms
57,812 KB
testcase_48 AC 1,012 ms
57,664 KB
testcase_49 AC 1,011 ms
58,068 KB
testcase_50 AC 929 ms
57,076 KB
testcase_51 AC 992 ms
58,072 KB
testcase_52 AC 888 ms
54,440 KB
testcase_53 AC 860 ms
54,368 KB
testcase_54 AC 881 ms
54,420 KB
testcase_55 AC 939 ms
53,568 KB
testcase_56 AC 883 ms
53,448 KB
testcase_57 AC 868 ms
53,448 KB
testcase_58 AC 57 ms
9,304 KB
testcase_59 AC 875 ms
59,856 KB
testcase_60 AC 27 ms
8,972 KB
testcase_61 AC 864 ms
53,352 KB
testcase_62 AC 8 ms
6,940 KB
testcase_63 AC 122 ms
15,988 KB
testcase_64 AC 114 ms
15,236 KB
testcase_65 AC 150 ms
14,940 KB
testcase_66 AC 878 ms
53,140 KB
testcase_67 AC 71 ms
18,760 KB
testcase_68 AC 69 ms
8,424 KB
testcase_69 AC 69 ms
19,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "testlib.h"
#include <bits/stdc++.h>

using namespace std;

// Safer-Faster-RollingHash
// https://qiita.com/keymoon/items/11fac5627672a6d6a9f6
// https://atcoder.jp/contests/abc141/submissions/7717102
typedef unsigned long long int ull;

const ull MASK30 = (1ull << 30) - 1;
const ull MASK31 = (1ull << 31) - 1;
const ull MOD = (1ull << 61) - 1;
const ull MASK61 = MOD;

//mod 2^61-1を計算する関数
ull CalcMod(ull x)
{
    ull xu = x >> 61;
    ull xd = x & MASK61;
    ull res = xu + xd;
    if (res >= MOD) res -= MOD;
    return res;
}

//a*b mod 2^61-1を返す関数(最後にModを取る)
ull Mul(ull a, ull b)
{
    ull au = a >> 31;
    ull ad = a & MASK31;
    ull bu = b >> 31;
    ull bd = b & MASK31;
    ull mid = ad * bu + au * bd;
    ull midu = mid >> 30;
    ull midd = mid & MASK30;
    return CalcMod(au * bu * 2 + midu + (midd << 31) + ad * bd);
}

ull hBase;
void genBase(mt19937_64 &eg){
  hBase=CalcMod((ull)eg());
}

int main(){
  random_device seed_gen;
  mt19937_64 engine(seed_gen());

  registerValidation();
  int n=inf.readInt(1,200000);inf.readEoln();
  vector<string> s(n);
  int sigl=0;
  for(int i=0;i<n;i++){
    s[i]=inf.readToken();inf.readEoln();
    sigl+=s[i].size();
    ensuref(sigl<=1000000,"too long input");
    for(auto &nx : s[i]){
      ensuref('a'<=nx && nx<='z',"invalid char");
    }
  }
  inf.readEof();

  vector<int> res(n,1);
  for(int tr=0;tr<1;tr++){
    genBase(engine);
    set<ull> st;
    for(int i=0;i<n;i++){
      ull ordHash=0;
      for(auto &nx : s[i]){
        ordHash=CalcMod(Mul(ordHash,hBase)+((ull)nx));
      }
      if(st.find(ordHash)==st.end()){res[i]=0;}
      // cout << "Cur : " << ordHash << "\n";
      st.insert(ordHash);
      ull pos=1;
      for(int j=s[i].size()-1;j>0;j--){
        ull npos=Mul(pos,hBase);
        ull subdel =CalcMod(Mul(pos,((ull)s[i][j]))+Mul(npos,((ull)s[i][j-1])));
        ull addel  =CalcMod(Mul(pos,((ull)s[i][j-1]))+Mul(npos,((ull)s[i][j])));
        ull curHash=CalcMod(ordHash+MOD-subdel+addel);
        st.insert(curHash);
        // cout << "Swap " << j << " : " << curHash << "\n";
        pos=npos;
      }
    }
  }
  for(auto &nx : res){
    if(nx==1){cout << "Yes\n";}
    else{cout << "No\n";}
  }
  return 0;
}
0