結果
問題 | No.2102 [Cherry Alpha *] Conditional Reflection |
ユーザー | tokusakurai |
提出日時 | 2022-10-14 22:15:56 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 7,271 bytes |
コンパイル時間 | 2,248 ms |
コンパイル使用メモリ | 214,904 KB |
実行使用メモリ | 61,128 KB |
最終ジャッジ日時 | 2024-06-26 15:13:08 |
合計ジャッジ時間 | 39,628 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 11 ms
10,992 KB |
testcase_01 | AC | 11 ms
11,140 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 639 ms
51,768 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 331 ms
37,544 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | AC | 424 ms
24,952 KB |
testcase_43 | AC | 403 ms
24,720 KB |
testcase_44 | AC | 404 ms
24,844 KB |
testcase_45 | AC | 419 ms
24,852 KB |
testcase_46 | AC | 436 ms
24,892 KB |
testcase_47 | AC | 790 ms
57,896 KB |
testcase_48 | AC | 797 ms
58,016 KB |
testcase_49 | AC | 770 ms
58,004 KB |
testcase_50 | AC | 797 ms
57,900 KB |
testcase_51 | AC | 883 ms
57,872 KB |
testcase_52 | AC | 807 ms
60,996 KB |
testcase_53 | AC | 776 ms
61,128 KB |
testcase_54 | AC | 764 ms
61,000 KB |
testcase_55 | AC | 770 ms
56,120 KB |
testcase_56 | AC | 727 ms
56,344 KB |
testcase_57 | AC | 742 ms
56,108 KB |
testcase_58 | AC | 67 ms
14,048 KB |
testcase_59 | AC | 779 ms
54,812 KB |
testcase_60 | WA | - |
testcase_61 | AC | 729 ms
56,176 KB |
testcase_62 | AC | 16 ms
11,416 KB |
testcase_63 | AC | 135 ms
11,248 KB |
testcase_64 | AC | 122 ms
11,252 KB |
testcase_65 | AC | 159 ms
11,444 KB |
testcase_66 | AC | 715 ms
55,888 KB |
testcase_67 | AC | 75 ms
11,148 KB |
testcase_68 | AC | 79 ms
11,288 KB |
testcase_69 | AC | 76 ms
11,112 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i, n) for (int i = 0; i < (n); i++) #define per(i, n) for (int i = (n)-1; i >= 0; i--) #define rep2(i, l, r) for (int i = (l); i < (r); i++) #define per2(i, l, r) for (int i = (r)-1; i >= (l); i--) #define each(e, v) for (auto &e : v) #define MM << " " << #define pb push_back #define eb emplace_back #define all(x) begin(x), end(x) #define rall(x) rbegin(x), rend(x) #define sz(x) (int)x.size() using ll = long long; using pii = pair<int, int>; using pil = pair<int, ll>; using pli = pair<ll, int>; using pll = pair<ll, ll>; template <typename T> using minheap = priority_queue<T, vector<T>, greater<T>>; template <typename T> using maxheap = priority_queue<T>; template <typename T> bool chmax(T &x, const T &y) { return (x < y) ? (x = y, true) : false; } template <typename T> bool chmin(T &x, const T &y) { return (x > y) ? (x = y, true) : false; } template <typename T> int flg(T x, int i) { return (x >> i) & 1; } template <typename T> void print(const vector<T> &v, T x = 0) { int n = v.size(); for (int i = 0; i < n; i++) cout << v[i] + x << (i == n - 1 ? '\n' : ' '); if (v.empty()) cout << '\n'; } template <typename T> void printn(const vector<T> &v, T x = 0) { int n = v.size(); for (int i = 0; i < n; i++) cout << v[i] + x << '\n'; } template <typename T> int lb(const vector<T> &v, T x) { return lower_bound(begin(v), end(v), x) - begin(v); } template <typename T> int ub(const vector<T> &v, T x) { return upper_bound(begin(v), end(v), x) - begin(v); } template <typename T> void rearrange(vector<T> &v) { sort(begin(v), end(v)); v.erase(unique(begin(v), end(v)), end(v)); } template <typename T> vector<int> id_sort(const vector<T> &v, bool greater = false) { int n = v.size(); vector<int> ret(n); iota(begin(ret), end(ret), 0); sort(begin(ret), end(ret), [&](int i, int j) { return greater ? v[i] > v[j] : v[i] < v[j]; }); return ret; } template <typename S, typename T> pair<S, T> operator+(const pair<S, T> &p, const pair<S, T> &q) { return make_pair(p.first + q.first, p.second + q.second); } template <typename S, typename T> pair<S, T> operator-(const pair<S, T> &p, const pair<S, T> &q) { return make_pair(p.first - q.first, p.second - q.second); } template <typename S, typename T> istream &operator>>(istream &is, pair<S, T> &p) { S a; T b; is >> a >> b; p = make_pair(a, b); return is; } template <typename S, typename T> ostream &operator<<(ostream &os, const pair<S, T> &p) { return os << p.first << ' ' << p.second; } struct io_setup { io_setup() { ios_base::sync_with_stdio(false); cin.tie(NULL); cout << fixed << setprecision(15); } } io_setup; const int inf = (1 << 30) - 1; const ll INF = (1LL << 60) - 1; // const int MOD = 1000000007; const int MOD = 998244353; struct Random_Number_Generator { mt19937_64 mt; Random_Number_Generator() : mt(chrono::steady_clock::now().time_since_epoch().count()) {} int64_t operator()(int64_t l, int64_t r) { uniform_int_distribution<int64_t> dist(l, r - 1); return dist(mt); } int64_t operator()(int64_t r) { return (*this)(0, r); } } rng; using ull = unsigned long long; struct Rolling_Hash { const ull mod = (1ULL << 61) - 1; ull calc_mod(ull x) const { ull ret = (x >> 61) + (x & mod); return ret - (ret >= mod ? mod : 0); } ull mul(ull x, ull y) const { x = calc_mod(x), y = calc_mod(y); ull x1 = x >> 31, x2 = x & ((1ULL << 31) - 1), y1 = y >> 31, y2 = y & ((1ULL << 31) - 1); ull z = x1 * y2 + x2 * y1, z1 = z >> 30, z2 = z & ((1ULL << 30) - 1); return calc_mod(x1 * y1 * 2 + x2 * y2 + z1 + (z2 << 31)); } ull pow(ull x, ull n) const { ull ret = 1; for (; n > 0; n >>= 1, x = mul(x, x)) { if (n & 1) ret = mul(ret, x); } return ret; } ull base; // 基数 vector<ull> hashed, pw; void set_base() { // 基数は乱数を用いて生成する Random_Number_Generator rng; while (true) { ull k = rng(mod); if (gcd(mod - 1, k) != 1) continue; base = pow(3, k); if (base < 256) continue; break; } } Rolling_Hash(const string &s) { set_base(); int n = s.size(); hashed.resize(n + 1), pw.resize(n + 1); hashed[0] = 0, pw[0] = 1; for (int i = 0; i < n; i++) { pw[i + 1] = mul(pw[i], base); hashed[i + 1] = mul(hashed[i], base) + s[i]; if (hashed[i + 1] >= mod) hashed[i + 1] -= mod; } } ull query(int l, int r) const { // 文字列の [l,r) の部分のハッシュ値 ull ret = hashed[r] + mod - mul(hashed[l], pw[r - l]); return ret - (ret >= mod ? mod : 0); } ull get_hash(const string &s) const { ull ret = 0; for (int i = 0; i < (int)s.size(); i++) { ret = mul(ret, base) + s[i]; if (ret >= mod) ret -= mod; } return ret; } }; template <typename T> struct Array_Hash { const ull mod = (1ULL << 61) - 1; ull calc_mod(ull x) const { ull ret = (x >> 61) + (x & mod); return ret - (ret >= mod ? mod : 0); } ull mul(ull x, ull y) const { x = calc_mod(x), y = calc_mod(y); ull x1 = x >> 31, x2 = x & ((1ULL << 31) - 1), y1 = y >> 31, y2 = y & ((1ULL << 31) - 1); ull z = x1 * y2 + x2 * y1, z1 = z >> 30, z2 = z & ((1ULL << 30) - 1); return calc_mod(x1 * y1 * 2 + x2 * y2 + z1 + (z2 << 31)); } ull pow(ull x, ull n) const { ull ret = 1; for (; n > 0; n >>= 1, x = mul(x, x)) { if (n & 1) ret = mul(ret, x); } return ret; } ull base; vector<ull> pw; void set_base(T m) { while (true) { ull k = rng(mod); if (gcd(mod - 1, k) != 1) continue; base = pow(3, k); if (base <= ull(m)) continue; break; } } Array_Hash(int n, T m) { // 配列の長さ、要素の最大値 set_base(m); pw.resize(n + 1); pw[0] = 1; for (int i = 0; i < n; i++) { pw[i + 1] = mul(pw[i], base); } } ull get_hash(const vector<T> &v) const { ull ret = 0; for (int i = 0; i < (int)v.size(); i++) { ret += mul(v[i], pw[i]); if (ret >= mod) ret -= mod; } return ret; } }; int main() { int N; cin >> N; Array_Hash<int> ah(1000000, 26); using ull = unsigned long long; set<ull> s; rep(i, N) { string S; cin >> S; int K = sz(S); vector<int> v(K); rep(i, K) v[i] = S[i] - 'a'; ull x = ah.get_hash(v); cout << (s.count(x) ? "Yes\n" : "No\n"); s.emplace(x); rep(i, K - 1) { ull y = x; y += ah.mod - ah.mul(v[i], ah.pw[i]); y += ah.mod - ah.mul(v[i + 1], ah.pw[i + 1]); y += ah.mul(v[i + 1], ah.pw[i]); y += ah.mul(v[i], ah.pw[i + 1]); y %= ah.mod; s.emplace(y); } } }