結果

問題 No.2102 [Cherry Alpha *] Conditional Reflection
ユーザー tnakao0123tnakao0123
提出日時 2022-10-15 14:01:01
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 360 ms / 3,000 ms
コード長 2,983 bytes
コンパイル時間 520 ms
コンパイル使用メモリ 67,440 KB
実行使用メモリ 30,584 KB
最終ジャッジ日時 2024-06-02 07:14:47
合計ジャッジ時間 17,612 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
18,424 KB
testcase_01 AC 10 ms
18,300 KB
testcase_02 AC 144 ms
23,808 KB
testcase_03 AC 195 ms
25,592 KB
testcase_04 AC 144 ms
23,672 KB
testcase_05 AC 96 ms
21,116 KB
testcase_06 AC 160 ms
23,936 KB
testcase_07 AC 187 ms
22,912 KB
testcase_08 AC 31 ms
18,684 KB
testcase_09 AC 190 ms
24,572 KB
testcase_10 AC 60 ms
20,220 KB
testcase_11 AC 70 ms
20,992 KB
testcase_12 AC 128 ms
23,168 KB
testcase_13 AC 244 ms
26,108 KB
testcase_14 AC 120 ms
22,396 KB
testcase_15 AC 176 ms
24,312 KB
testcase_16 AC 267 ms
27,772 KB
testcase_17 AC 117 ms
21,372 KB
testcase_18 AC 210 ms
23,548 KB
testcase_19 AC 88 ms
21,500 KB
testcase_20 AC 266 ms
26,876 KB
testcase_21 AC 48 ms
18,936 KB
testcase_22 AC 324 ms
28,540 KB
testcase_23 AC 315 ms
28,536 KB
testcase_24 AC 320 ms
28,540 KB
testcase_25 AC 323 ms
28,540 KB
testcase_26 AC 319 ms
28,792 KB
testcase_27 AC 311 ms
28,664 KB
testcase_28 AC 303 ms
28,412 KB
testcase_29 AC 334 ms
28,536 KB
testcase_30 AC 323 ms
28,540 KB
testcase_31 AC 312 ms
28,544 KB
testcase_32 AC 311 ms
28,412 KB
testcase_33 AC 320 ms
28,664 KB
testcase_34 AC 309 ms
28,668 KB
testcase_35 AC 315 ms
28,536 KB
testcase_36 AC 311 ms
28,540 KB
testcase_37 AC 317 ms
28,536 KB
testcase_38 AC 316 ms
28,536 KB
testcase_39 AC 332 ms
28,544 KB
testcase_40 AC 332 ms
28,412 KB
testcase_41 AC 318 ms
28,540 KB
testcase_42 AC 293 ms
25,212 KB
testcase_43 AC 289 ms
25,084 KB
testcase_44 AC 290 ms
25,212 KB
testcase_45 AC 286 ms
25,216 KB
testcase_46 AC 294 ms
25,212 KB
testcase_47 AC 253 ms
22,392 KB
testcase_48 AC 249 ms
22,396 KB
testcase_49 AC 243 ms
22,272 KB
testcase_50 AC 242 ms
22,264 KB
testcase_51 AC 246 ms
22,396 KB
testcase_52 AC 33 ms
19,964 KB
testcase_53 AC 32 ms
20,092 KB
testcase_54 AC 33 ms
19,836 KB
testcase_55 AC 102 ms
19,320 KB
testcase_56 AC 104 ms
19,324 KB
testcase_57 AC 102 ms
19,328 KB
testcase_58 AC 35 ms
19,316 KB
testcase_59 AC 360 ms
30,584 KB
testcase_60 AC 25 ms
18,300 KB
testcase_61 AC 103 ms
19,324 KB
testcase_62 AC 15 ms
18,556 KB
testcase_63 AC 32 ms
20,476 KB
testcase_64 AC 30 ms
20,604 KB
testcase_65 AC 35 ms
20,600 KB
testcase_66 AC 94 ms
19,324 KB
testcase_67 AC 38 ms
18,300 KB
testcase_68 AC 43 ms
19,192 KB
testcase_69 AC 37 ms
18,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2102.cc:  No.2102 [Cherry Alpha *] Conditional Reflection - yukicoder
 */

#include<cstdio>
#include<cstring>
#include<string>
#include<set>
#include<algorithm>
#include<utility>
 
using namespace std;

/* constant */

const int MAX_N = 200000;
const int MAX_L = 1000000;
const int P = 4079;
const int MOD = 1000000033;

/* typedef */

/* typedef */

template<const int MOD>
struct MI {
  int v;
  MI(): v() {}
  MI(int _v): v(_v % MOD) {}
  MI(long long _v): v(_v % MOD) {}

  MI operator+(const MI m) const { return MI(v + m.v); }
  MI operator-(const MI m) const { return MI(v + MOD - m.v); }
  MI operator*(const MI m) const { return MI((long long)v * m.v); }

  MI &operator+=(const MI m) { return (*this = *this + m); }
  MI &operator-=(const MI m) { return (*this = *this - m); }
  MI &operator*=(const MI m) { return (*this = *this * m); }

  bool operator==(const MI m) const { return v == m.v; }
  bool operator!=(const MI m) const { return v != m.v; }
  bool operator<(const MI m) const { return v < m.v; }

  MI pow(int n) const {  // a^n % MOD
    MI pm = 1, a = *this;
    while (n > 0) {
      if (n & 1) pm *= a;
      a *= a;
      n >>= 1;
    }
    return pm;
  }

  MI inv() const { return pow(MOD - 2); }
  MI operator/(const MI m) const { return *this * m.inv(); }
  MI &operator/=(const MI m) { return (*this = *this / m); }
};

typedef MI<MOD> mi;

struct Stat {
  int l, i;
  mi h;
  Stat() {}
  Stat(int _l, int _i, mi _h): l(_l), i(_i), h(_h) {}
  bool operator<(const Stat &s) const {
    return l < s.l || (l == s.l && h < s.h);
  }
};

typedef set<Stat> sst;

/* global variables */

mi pes[MAX_L + 1], invpes[MAX_L + 1];
char s[MAX_L + 4];
string ss[MAX_N];

/* subroutines */

inline void prep_rhash(int n) {
  pes[0] = invpes[0] = 1;
  pes[1] = P;
  invpes[1] = pes[1].inv();
  for (int i = 2; i <= n; i++) {
    pes[i] = pes[i - 1] * P;
    invpes[i] = invpes[i - 1] * invpes[1];
  }
}

inline mi s2h(const string &s) {
  mi h = 0;
  for (int k = 0; k < s.size(); k++) h += pes[k] * s[k];
  return h;
}

inline mi replh(mi h, const string &s, int i, int j) {
  h -= pes[i] * s[i] + pes[j] * s[j];
  h += pes[i] * s[j] + pes[j] * s[i];
  return h;
}

bool check(sst &gs, string &s, mi h) {
  sst::iterator sit = gs.find(Stat((int)s.size(), -1, h));
  return (sit != gs.end() && ss[sit->i] == s);
}

/* main */

int main() {
  prep_rhash(MAX_L);

  int n;
  scanf("%d", &n);

  sst gs;
  for (int i = 0; i < n; i++) {
    scanf("%s", s);
    string si(s);
    ss[i] = si;
    int l = si.size();
    mi hi = s2h(si);
    //printf("%d: %s = %d,%d\n", i, s, l, hi.v);

    if (check(gs, si, hi)) { puts("Yes"); continue; }

    bool ok = false;
    for (int j = 0; ! ok && j + 1 < l; j++) {
      mi hj = replh(hi, si, j, j + 1);
      swap(si[j], si[j + 1]);
      ok = check(gs, si, hj);
      swap(si[j], si[j + 1]);
    }

    gs.insert(Stat(l, i, hi));

    if (ok) puts("Yes");
    else puts("No");
  }
  return 0;
}
0