結果
問題 | No.2102 [Cherry Alpha *] Conditional Reflection |
ユーザー | woodywoody |
提出日時 | 2022-10-16 03:14:20 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 954 ms / 3,000 ms |
コード長 | 6,245 bytes |
コンパイル時間 | 5,620 ms |
コンパイル使用メモリ | 254,804 KB |
実行使用メモリ | 12,820 KB |
最終ジャッジ日時 | 2024-06-27 01:45:58 |
合計ジャッジ時間 | 45,614 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 3 ms
5,376 KB |
testcase_02 | AC | 407 ms
8,092 KB |
testcase_03 | AC | 460 ms
8,340 KB |
testcase_04 | AC | 434 ms
8,092 KB |
testcase_05 | AC | 339 ms
5,632 KB |
testcase_06 | AC | 457 ms
7,964 KB |
testcase_07 | AC | 448 ms
5,776 KB |
testcase_08 | AC | 181 ms
5,376 KB |
testcase_09 | AC | 412 ms
8,088 KB |
testcase_10 | AC | 231 ms
5,376 KB |
testcase_11 | AC | 166 ms
5,760 KB |
testcase_12 | AC | 341 ms
6,552 KB |
testcase_13 | AC | 516 ms
8,712 KB |
testcase_14 | AC | 380 ms
6,176 KB |
testcase_15 | AC | 530 ms
7,900 KB |
testcase_16 | AC | 663 ms
9,496 KB |
testcase_17 | AC | 290 ms
5,632 KB |
testcase_18 | AC | 455 ms
6,552 KB |
testcase_19 | AC | 263 ms
5,656 KB |
testcase_20 | AC | 543 ms
8,972 KB |
testcase_21 | AC | 301 ms
5,376 KB |
testcase_22 | AC | 663 ms
9,880 KB |
testcase_23 | AC | 662 ms
10,004 KB |
testcase_24 | AC | 682 ms
9,876 KB |
testcase_25 | AC | 674 ms
9,876 KB |
testcase_26 | AC | 677 ms
9,880 KB |
testcase_27 | AC | 736 ms
9,872 KB |
testcase_28 | AC | 694 ms
9,872 KB |
testcase_29 | AC | 698 ms
9,876 KB |
testcase_30 | AC | 700 ms
9,876 KB |
testcase_31 | AC | 693 ms
10,008 KB |
testcase_32 | AC | 719 ms
10,004 KB |
testcase_33 | AC | 714 ms
9,924 KB |
testcase_34 | AC | 701 ms
9,872 KB |
testcase_35 | AC | 717 ms
9,876 KB |
testcase_36 | AC | 691 ms
9,872 KB |
testcase_37 | AC | 670 ms
9,872 KB |
testcase_38 | AC | 698 ms
9,876 KB |
testcase_39 | AC | 676 ms
9,896 KB |
testcase_40 | AC | 682 ms
10,004 KB |
testcase_41 | AC | 693 ms
9,876 KB |
testcase_42 | AC | 515 ms
8,208 KB |
testcase_43 | AC | 513 ms
8,080 KB |
testcase_44 | AC | 517 ms
8,076 KB |
testcase_45 | AC | 524 ms
8,204 KB |
testcase_46 | AC | 512 ms
8,204 KB |
testcase_47 | AC | 491 ms
6,168 KB |
testcase_48 | AC | 484 ms
6,036 KB |
testcase_49 | AC | 489 ms
6,160 KB |
testcase_50 | AC | 486 ms
6,296 KB |
testcase_51 | AC | 486 ms
6,032 KB |
testcase_52 | AC | 954 ms
6,304 KB |
testcase_53 | AC | 951 ms
6,304 KB |
testcase_54 | AC | 944 ms
6,308 KB |
testcase_55 | AC | 629 ms
5,376 KB |
testcase_56 | AC | 632 ms
5,376 KB |
testcase_57 | AC | 633 ms
5,376 KB |
testcase_58 | AC | 813 ms
5,376 KB |
testcase_59 | AC | 708 ms
12,820 KB |
testcase_60 | AC | 196 ms
5,376 KB |
testcase_61 | AC | 631 ms
5,376 KB |
testcase_62 | AC | 20 ms
5,376 KB |
testcase_63 | AC | 376 ms
5,376 KB |
testcase_64 | AC | 373 ms
5,376 KB |
testcase_65 | AC | 386 ms
5,376 KB |
testcase_66 | AC | 623 ms
5,376 KB |
testcase_67 | AC | 473 ms
5,376 KB |
testcase_68 | AC | 519 ms
5,376 KB |
testcase_69 | AC | 469 ms
5,376 KB |
ソースコード
// #define _GLIBCXX_DEBUG #include<bits/stdc++.h> #include<atcoder/all> #define rep(i,b) for(int i=0;i<b;i++) #define rrep(i,b) for(int i=b-1;i>=0;i--) #define rep1(i,b) for(int i=1;i<b;i++) #define repx(i,x,b) for(int i=x;i<b;i++) #define rrepx(i,x,b) for(int i=b-1;i>=x;i--) #define fore(i,a) for(auto i:a) #define fore1(i,a) for(auto &i:a) #define rng(x) (x).begin(), (x).end() #define rrng(x) (x).rbegin(), (x).rend() #define sz(x) ((int)(x).size()) #define pb push_back #define fi first #define se second #define pcnt __builtin_popcountll using namespace std; using namespace atcoder; using ll = long long; using ld = long double; template<typename T> using mpq = priority_queue<T, vector<T>, greater<T>>; template<typename T> bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; } template<typename T> bool chmin(T &a, const T &b) { if (b<a) { a=b; return 1; } return 0; } template<typename T> ll sumv(const vector<T>&a){ll res(0);for(auto&&x:a)res+=x;return res;} bool yn(bool a) { if(a) {cout << "Yes" << endl; return 1;} else {cout << "No" << endl; return 0;}} #define dame { cout << "No" << endl; return 0;} #define dame1 { cout << -1 << endl; return 0;} #define test(x) cout << "test" << x << endl; #define deb(x,y) cout << x << " " << y << endl; #define debp(p) cout << p.fi << " " << p.se << endl; #define deb3(x,y,z) cout << x << " " << y << " " << z << endl; #define deb4(x,y,z,x2) cout << x << " " << y << " " << z << " " << x2 << endl; #define out cout << ans << endl; #define outd cout << fixed << setprecision(20) << ans << endl; #define outm cout << ans.val() << endl; #define outv fore(yans , ans) cout << yans << "\n"; #define outdv fore(yans , ans) cout << yans.val() << "\n"; #define show(x) cerr<<#x<<" = "<<x<<endl; #define showdeb(x,y) cerr<<#x<<" = "<<x<<" : "<<#y<<" = "<<y<<endl; #define showv(v) {fore(vy , v) {cout << vy << " ";} cout << endl;} #define showv2(v) fore(vy , v) cout << vy << "\n"; #define showvm(v) {fore(vy , v) {cout << vy.val() << " ";} cout << endl;} #define showvm2(v) fore(vy , v) cout << vy.val() << "\n"; using pll = pair<ll,ll>;using pil = pair<int,ll>;using pli = pair<ll,int>;using pii = pair<int,int>;using pdd = pair<ld,ld>; using tp = tuple<int ,int ,int>; using vi = vector<int>;using vd = vector<ld>;using vl = vector<ll>;using vs = vector<string>;using vb = vector<bool>; using vpii = vector<pii>;using vpli = vector<pli>;using vpll = vector<pll>;using vpil = vector<pil>; using vvi = vector<vector<int>>;using vvl = vector<vector<ll>>;using vvs = vector<vector<string>>;using vvb = vector<vector<bool>>; using vvpii = vector<vector<pii>>;using vvpli = vector<vector<pli>>;using vvpll = vector<vpll>;using vvpil = vector<vpil>; using mint = modint998244353; using vm = vector<mint>; using vvm = vector<vector<mint>>; vector<int> dx={1,0,-1,0,1,1,-1,-1},dy={0,1,0,-1,1,-1,1,-1}; ll gcd(ll a, ll b) { return a?gcd(b%a,a):b;} ll lcm(ll a, ll b) { return a/gcd(a,b)*b;} #define yes {cout <<"Yes"<<endl;} #define yesr { cout <<"Yes"<<endl; return 0;} #define no {cout <<"No"<<endl;} #define nor { cout <<"No"<<endl; return 0;} const double eps = 1e-10; const ll LINF = 1001002003004005006ll; const int INF = 1001001001; struct RollingHash{ const ll MASK30 = (1UL << 30) - 1; const ll MASK31 = (1UL << 31) - 1; const ll MOD = (1UL << 61) - 1; const ll MASK61 = MOD; map<char,ll> CharHash; unordered_map<ll,int> idx; int str_num = 0; ll Base; RollingHash(){ map<ll,int> tmp; ll mx = 0; rep(i,26){ char c = 'a' + i; ll y = rand()+1; while(tmp.count(y)){ y = rand()+1; } CharHash[c] = y; chmax(mx,y); } ll base_tmp = 37; while(1){ int k = rand()+1; if (gcd(MOD,k) != 1) continue; Base = PowMod(base_tmp , k); if (Base <= mx) continue; break; } }; //a*b mod 2^61-1を返す関数(最後にModを取る) ll Mul(ll a, ll b) { a = (a + MOD) % MOD; b = (b + MOD) % MOD; ll au = a >> 31; ll ad = a & MASK31; ll bu = b >> 31; ll bd = b & MASK31; ll mid = ad * bu + au * bd; ll midu = mid >> 30; ll midd = mid & MASK30; return CalcMod(au * bu * 2 + midu + (midd << 31) + ad * bd); } //mod 2^61-1を計算する関数 ll CalcMod(ll x) { ll xu = x >> 61; ll xd = x & MASK61; ll res = xu + xd; if (res >= MOD) res -= MOD; return res; } ll PowMod(ll base, ll exp) { // base^exp mod MOD if (exp == 0) { return 1; } else if (exp % 2 == 0) { ll t = PowMod(base, exp / 2); return Mul(t, t); } else { return Mul(base, PowMod(base, exp - 1)); } } ll GetHash(string s){ ll now = 0; int n = sz(s); rrep(i,n){ now = Mul(now,Base) + CharHash[s[i]]; } return now; } ll Apply(string s){ ll hash = GetHash(s); idx[hash] = str_num; str_num++; return hash; } int GetIdx(string s){ ll hash = GetHash(s); int ret = -1; if (idx.count(hash)) ret = idx[hash]; return ret; } int GetIdx(ll hash){ int ret = -1; if (idx.count(hash)) ret = idx[hash]; return ret; } }rhash; void solve(){ int n; cin>>n; vb ans(n); rep(i,n){ string s; cin>>s; ll hash = rhash.GetHash(s); bool ok = false; if (rhash.GetIdx(hash) != -1) ok = true; rep(i,sz(s)-1){ ll ch = rhash.CharHash[s[i]]; ll ch2 = rhash.CharHash[s[i+1]]; ll base = rhash.Base; ll tmp = rhash.Mul(base,ch) + ch2 - ch - rhash.Mul(base,ch2); tmp = rhash.Mul(tmp , rhash.PowMod(base , i)); tmp += hash; tmp %= rhash.MOD; if (rhash.GetIdx(tmp) != -1) ok = true; } ans[i] = ok; rhash.Apply(s); } fore(y , ans){ cout << (y ? "Yes" : "No") << endl; } return; } int main(){ solve(); return 0; }