結果

問題 No.2102 [Cherry Alpha *] Conditional Reflection
ユーザー kwm_tkwm_t
提出日時 2022-10-15 17:15:29
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,136 bytes
コンパイル時間 2,334 ms
コンパイル使用メモリ 213,228 KB
実行使用メモリ 37,632 KB
最終ジャッジ日時 2024-06-26 20:07:17
合計ジャッジ時間 46,715 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
18,944 KB
testcase_01 AC 26 ms
19,072 KB
testcase_02 AC 462 ms
27,520 KB
testcase_03 AC 600 ms
30,080 KB
testcase_04 AC 445 ms
27,264 KB
testcase_05 AC 264 ms
23,552 KB
testcase_06 AC 488 ms
27,904 KB
testcase_07 AC 518 ms
23,936 KB
testcase_08 AC 72 ms
19,456 KB
testcase_09 AC 544 ms
28,672 KB
testcase_10 AC 172 ms
22,272 KB
testcase_11 AC 186 ms
23,296 KB
testcase_12 AC 363 ms
26,496 KB
testcase_13 AC 725 ms
31,104 KB
testcase_14 AC 338 ms
25,472 KB
testcase_15 AC 529 ms
28,288 KB
testcase_16 AC 864 ms
33,152 KB
testcase_17 AC 334 ms
22,912 KB
testcase_18 AC 603 ms
26,624 KB
testcase_19 AC 247 ms
24,064 KB
testcase_20 AC 792 ms
31,872 KB
testcase_21 AC 120 ms
20,096 KB
testcase_22 AC 986 ms
34,688 KB
testcase_23 AC 1,019 ms
34,688 KB
testcase_24 AC 1,123 ms
34,688 KB
testcase_25 AC 1,082 ms
34,432 KB
testcase_26 AC 1,010 ms
34,688 KB
testcase_27 AC 968 ms
34,560 KB
testcase_28 AC 970 ms
34,560 KB
testcase_29 WA -
testcase_30 AC 971 ms
34,688 KB
testcase_31 AC 981 ms
34,432 KB
testcase_32 AC 993 ms
34,560 KB
testcase_33 AC 1,003 ms
34,560 KB
testcase_34 AC 990 ms
34,688 KB
testcase_35 AC 990 ms
34,688 KB
testcase_36 AC 993 ms
34,684 KB
testcase_37 AC 952 ms
34,560 KB
testcase_38 AC 976 ms
34,432 KB
testcase_39 AC 943 ms
34,560 KB
testcase_40 AC 995 ms
34,560 KB
testcase_41 AC 1,014 ms
34,560 KB
testcase_42 AC 784 ms
29,568 KB
testcase_43 AC 777 ms
29,568 KB
testcase_44 AC 785 ms
29,568 KB
testcase_45 AC 806 ms
29,568 KB
testcase_46 AC 783 ms
29,440 KB
testcase_47 AC 625 ms
25,344 KB
testcase_48 AC 631 ms
25,216 KB
testcase_49 AC 620 ms
25,344 KB
testcase_50 AC 635 ms
25,344 KB
testcase_51 AC 621 ms
25,344 KB
testcase_52 AC 146 ms
19,808 KB
testcase_53 AC 149 ms
20,068 KB
testcase_54 AC 145 ms
19,808 KB
testcase_55 AC 252 ms
19,200 KB
testcase_56 AC 257 ms
19,200 KB
testcase_57 AC 256 ms
19,200 KB
testcase_58 AC 146 ms
19,804 KB
testcase_59 AC 1,056 ms
37,632 KB
testcase_60 AC 67 ms
18,944 KB
testcase_61 AC 254 ms
19,200 KB
testcase_62 AC 41 ms
19,456 KB
testcase_63 AC 231 ms
18,944 KB
testcase_64 AC 234 ms
18,944 KB
testcase_65 AC 326 ms
19,072 KB
testcase_66 AC 262 ms
19,200 KB
testcase_67 AC 165 ms
18,944 KB
testcase_68 AC 156 ms
19,200 KB
testcase_69 AC 162 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[3][1000006];
int main() {
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	int n; cin >> n;
	vector<long long>mod;
	//mod.push_back(998244353);
	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];
	}
	vector<set<long long>>st(sz);
	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;
		{
			int cnt = 0;
			rep(j, sz)if (st[j].count(val[j]))cnt++;
			if (cnt == sz)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];
			}
			int cnt = 0;
			rep(j, sz)if (st[j].count(subval[j]))cnt++;
			if (cnt == sz)chk = true;
		}
		if (chk)cout << "Yes" << endl;
		else cout << "No" << endl;
		rep(j, sz)st[j].insert(val[j]);
	}
	return 0;
}
0