結果

問題 No.2308 [Cherry 5th Tune B] もしかして、真?
ユーザー kabipoyokabipoyo
提出日時 2023-05-19 22:34:26
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 349 ms / 2,000 ms
コード長 2,254 bytes
コンパイル時間 4,388 ms
コンパイル使用メモリ 268,092 KB
実行使用メモリ 19,036 KB
最終ジャッジ日時 2024-12-18 03:27:28
合計ジャッジ時間 17,420 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 260 ms
7,952 KB
testcase_02 AC 302 ms
11,324 KB
testcase_03 AC 268 ms
11,428 KB
testcase_04 AC 280 ms
11,800 KB
testcase_05 AC 280 ms
12,308 KB
testcase_06 AC 295 ms
15,716 KB
testcase_07 AC 296 ms
14,388 KB
testcase_08 AC 312 ms
16,364 KB
testcase_09 AC 313 ms
16,412 KB
testcase_10 AC 288 ms
11,532 KB
testcase_11 AC 310 ms
11,136 KB
testcase_12 AC 301 ms
11,144 KB
testcase_13 AC 315 ms
11,120 KB
testcase_14 AC 309 ms
11,172 KB
testcase_15 AC 308 ms
11,200 KB
testcase_16 AC 296 ms
11,140 KB
testcase_17 AC 294 ms
11,188 KB
testcase_18 AC 297 ms
11,140 KB
testcase_19 AC 307 ms
11,184 KB
testcase_20 AC 308 ms
11,184 KB
testcase_21 AC 342 ms
18,980 KB
testcase_22 AC 336 ms
19,000 KB
testcase_23 AC 331 ms
19,004 KB
testcase_24 AC 339 ms
18,948 KB
testcase_25 AC 341 ms
18,940 KB
testcase_26 AC 341 ms
18,964 KB
testcase_27 AC 329 ms
19,004 KB
testcase_28 AC 339 ms
19,036 KB
testcase_29 AC 349 ms
18,896 KB
testcase_30 AC 335 ms
18,952 KB
testcase_31 AC 236 ms
18,944 KB
testcase_32 AC 229 ms
18,920 KB
testcase_33 AC 236 ms
18,924 KB
testcase_34 AC 246 ms
18,924 KB
testcase_35 AC 254 ms
18,940 KB
testcase_36 AC 250 ms
18,968 KB
testcase_37 AC 24 ms
6,820 KB
testcase_38 AC 298 ms
11,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
typedef int64_t lint;
#define rep(i, n) for(int i=0; i<n; i++)
#define repx(i, l, n) for(int i=l; i<n; i++)
#define all(v) v.begin(), v.end()
#define show(x) cout << #x << ": " << x << endl;
#define list(x) cout << #x << ": " << x << "  ";
#define pb push_back
using vi = vector<lint>;
using vvi = vector<vector<lint>>;
template<class T> inline void vin(vector<T>& v) { rep(i, v.size()) cin >> v.at(i); }
template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }
template<class T> inline void drop(T x) { cout << x << endl; exit(0); }
template<class T> void vout(vector<T> v) { rep(i, v.size()) { cout << v.at(i) << ' '; } cout << endl; }
constexpr lint LINF = LLONG_MAX/2;

int main() {
	lint T;
	cin >> T;

	rep(_, T) {
		lint N;
		cin >> N;
		vector<string> v(N), w(N-1);
		vi Q(N-1);
		vin(v);
		vin(w);
		vin(Q);

		lint a=0, b=0, c=0, x, y, z;
		fenwick_tree<lint> fw(N);
		rep(i, N) fw.add(i, 1);
		rep(i, N-1) {
			lint ng = -1, mid, ok = N-2;
			while (abs(ok - ng) > 1) {
				mid = (ok + ng) / 2;
				x = fw.sum(0, mid+1);
				if (x >= Q[i]) ok = mid;
				else ng = mid;
			}
			z = ok;
			ng = -1, mid, ok = N-1;
			while (abs(ok - ng) > 1) {
				mid = (ok + ng) / 2;
				x = fw.sum(0, mid+1);
				if (x >= Q[i]+1) ok = mid;
				else ng = mid;
			}
			Q[i] = z;
			if (w[Q[i]] == "and") {
				if (v[Q[i]] == "False" || v[ok] == "False") {
					v[Q[i]] = "False";
					v[ok] = "False";
				} else {
					v[Q[i]] = "True";
					v[ok] = "True";
				}
			} else if (w[Q[i]] == "or") {
				if (v[Q[i]] == "True" || v[ok] == "True") {
					v[Q[i]] = "True";
					v[ok] = "True";
				} else {
					v[Q[i]] = "False";
					v[ok] = "False";
				}
			} else if (w[Q[i]] == "xor") {
				if (v[Q[i]] != v[ok]) {
					v[Q[i]] = "True";
					v[ok] = "True";
				} else {
					v[Q[i]] = "False";
					v[ok] = "False";
				}
			} else if (w[Q[i]] == "imp") {
				if (v[Q[i]] == "True") {
					v[Q[i]] = v[ok];
				} else {
					v[Q[i]] = "True";
					v[ok] = "True";
				}
			}
			fw.add(Q[i], -1);
		}
		cout << v[Q[N-2]] << endl;
	}
}
0