結果

問題 No.2102 [Cherry Alpha *] Conditional Reflection
ユーザー kwm_tkwm_t
提出日時 2022-10-15 17:22:22
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 547 ms / 3,000 ms
コード長 1,995 bytes
コンパイル時間 2,236 ms
コンパイル使用メモリ 212,724 KB
実行使用メモリ 28,232 KB
最終ジャッジ日時 2024-06-26 20:08:16
合計ジャッジ時間 28,580 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
18,972 KB
testcase_01 AC 26 ms
19,052 KB
testcase_02 AC 242 ms
23,232 KB
testcase_03 AC 327 ms
24,484 KB
testcase_04 AC 254 ms
23,192 KB
testcase_05 AC 169 ms
21,192 KB
testcase_06 AC 270 ms
23,548 KB
testcase_07 AC 293 ms
21,532 KB
testcase_08 AC 60 ms
19,312 KB
testcase_09 AC 296 ms
23,816 KB
testcase_10 AC 111 ms
20,800 KB
testcase_11 AC 118 ms
21,184 KB
testcase_12 AC 209 ms
22,940 KB
testcase_13 AC 389 ms
25,156 KB
testcase_14 AC 202 ms
22,188 KB
testcase_15 AC 310 ms
23,588 KB
testcase_16 AC 451 ms
26,196 KB
testcase_17 AC 199 ms
20,908 KB
testcase_18 AC 324 ms
22,848 KB
testcase_19 AC 154 ms
21,652 KB
testcase_20 AC 421 ms
25,456 KB
testcase_21 AC 92 ms
19,632 KB
testcase_22 AC 507 ms
26,956 KB
testcase_23 AC 512 ms
26,864 KB
testcase_24 AC 528 ms
26,828 KB
testcase_25 AC 512 ms
27,028 KB
testcase_26 AC 505 ms
26,764 KB
testcase_27 AC 523 ms
26,908 KB
testcase_28 AC 511 ms
26,744 KB
testcase_29 AC 522 ms
26,796 KB
testcase_30 AC 539 ms
26,996 KB
testcase_31 AC 503 ms
26,724 KB
testcase_32 AC 520 ms
26,896 KB
testcase_33 AC 546 ms
26,924 KB
testcase_34 AC 511 ms
26,748 KB
testcase_35 AC 520 ms
26,912 KB
testcase_36 AC 534 ms
26,832 KB
testcase_37 AC 542 ms
26,736 KB
testcase_38 AC 519 ms
26,864 KB
testcase_39 AC 511 ms
26,836 KB
testcase_40 AC 528 ms
26,752 KB
testcase_41 AC 534 ms
26,836 KB
testcase_42 AC 437 ms
24,372 KB
testcase_43 AC 417 ms
24,228 KB
testcase_44 AC 422 ms
24,360 KB
testcase_45 AC 419 ms
24,468 KB
testcase_46 AC 410 ms
24,332 KB
testcase_47 AC 358 ms
22,252 KB
testcase_48 AC 341 ms
22,224 KB
testcase_49 AC 352 ms
22,112 KB
testcase_50 AC 350 ms
22,228 KB
testcase_51 AC 347 ms
22,240 KB
testcase_52 AC 143 ms
19,936 KB
testcase_53 AC 142 ms
19,936 KB
testcase_54 AC 143 ms
19,936 KB
testcase_55 AC 193 ms
19,180 KB
testcase_56 AC 196 ms
19,120 KB
testcase_57 AC 193 ms
19,116 KB
testcase_58 AC 143 ms
19,680 KB
testcase_59 AC 547 ms
28,232 KB
testcase_60 AC 64 ms
19,092 KB
testcase_61 AC 192 ms
19,112 KB
testcase_62 AC 34 ms
19,396 KB
testcase_63 AC 186 ms
19,080 KB
testcase_64 AC 192 ms
19,080 KB
testcase_65 AC 230 ms
19,096 KB
testcase_66 AC 195 ms
19,204 KB
testcase_67 AC 155 ms
19,080 KB
testcase_68 AC 146 ms
19,172 KB
testcase_69 AC 152 ms
19,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
//#include <atcoder/all>
using namespace std;
//using namespace atcoder;
//using mint = modint1000000007;
//const int mod = 1000000007;
//using mint = modint998244353;
//const int mod = 998244353;
//const int INF = 1e9;
//const long long LINF = 1e18;
#define rep(i, n) for (int i = 0; i < (n); ++i)
#define rep2(i,l,r)for(int i=(l);i<(r);++i)
#define rrep(i, n) for (int i = (n-1); i >= 0; --i)
#define rrep2(i,l,r)for(int i=(r-1);i>=(l);--i)
#define all(x) (x).begin(),(x).end()
#define allR(x) (x).rbegin(),(x).rend()
#define endl "\n"
#define P pair<int,int>
template<typename A, typename B> inline bool chmax(A & a, const B & b) { if (a < b) { a = b; return true; } return false; }
template<typename A, typename B> inline bool chmin(A & a, const B & b) { if (a > b) { a = b; return true; } return false; }
long long table[2][1000006];
int main() {
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	int n; cin >> n;
	vector<long long>mod;
	mod.push_back(1000000007);
	mod.push_back(1000000009);
	int sz = mod.size();
	int base = 998244353;
	rep(i, sz)table[i][0] = 1;
	rep2(i, 1, 1000006) {
		rep(j, sz) table[j][i] = (table[j][i - 1] * base) % mod[j];
	}
	set<P>st;
	rep(i, n) {
		string s; cin >> s;
		vector<long long>val(sz);
		rep(j, s.size()) {
			rep(k, sz) {
				val[k] += table[k][j] * (s[j] - 'a' + 1);
				val[k] %= mod[k];
			}
		}
		bool chk = false;
		if (st.count({ val[0],val[1] }))chk = true;
		rep(j, s.size() - 1) {
			vector<long long>subval(sz);
			rep(k, sz) {
				subval[k] = val[k];
				subval[k] += mod[k] - table[k][j + 0] * (s[j + 0] - 'a' + 1) % mod[k];
				subval[k] += mod[k] - table[k][j + 1] * (s[j + 1] - 'a' + 1) % mod[k];
				subval[k] += table[k][j + 0] * (s[j + 1] - 'a' + 1);
				subval[k] += table[k][j + 1] * (s[j + 0] - 'a' + 1);
				subval[k] %= mod[k];
			}
			if (st.count({ subval[0],subval[1] }))chk = true;
		}
		if (chk)cout << "Yes" << endl;
		else cout << "No" << endl;
		st.insert({ val[0],val[1] });
	}
	return 0;
}
0