結果

問題 No.973 余興
ユーザー QCFiumQCFium
提出日時 2020-01-17 22:53:08
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 2,059 bytes
コンパイル時間 2,068 ms
コンパイル使用メモリ 178,196 KB
実行使用メモリ 37,696 KB
最終ジャッジ日時 2024-06-25 23:30:02
合計ジャッジ時間 71,105 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3,057 ms
37,500 KB
testcase_01 AC 3,092 ms
37,452 KB
testcase_02 AC 3,081 ms
37,632 KB
testcase_03 AC 3,016 ms
37,644 KB
testcase_04 AC 3,060 ms
37,596 KB
testcase_05 AC 3,080 ms
37,556 KB
testcase_06 AC 3,082 ms
37,580 KB
testcase_07 AC 3,090 ms
37,420 KB
testcase_08 AC 3,079 ms
37,352 KB
testcase_09 AC 3,065 ms
37,536 KB
testcase_10 AC 3,113 ms
36,256 KB
testcase_11 AC 1,263 ms
15,868 KB
testcase_12 AC 1,262 ms
15,876 KB
testcase_13 AC 1,264 ms
15,776 KB
testcase_14 AC 1,273 ms
15,660 KB
testcase_15 AC 89 ms
5,376 KB
testcase_16 AC 91 ms
5,376 KB
testcase_17 AC 56 ms
5,376 KB
testcase_18 AC 72 ms
5,376 KB
testcase_19 AC 73 ms
5,376 KB
testcase_20 AC 56 ms
5,376 KB
testcase_21 AC 90 ms
5,376 KB
testcase_22 AC 88 ms
5,376 KB
testcase_23 AC 71 ms
5,376 KB
testcase_24 AC 74 ms
5,376 KB
testcase_25 AC 34 ms
5,376 KB
testcase_26 AC 55 ms
5,376 KB
testcase_27 AC 109 ms
5,376 KB
testcase_28 AC 74 ms
5,376 KB
testcase_29 AC 73 ms
5,376 KB
testcase_30 TLE -
testcase_31 TLE -
testcase_32 AC 3,993 ms
37,684 KB
testcase_33 TLE -
testcase_34 AC 3,978 ms
37,512 KB
testcase_35 AC 3,998 ms
37,404 KB
testcase_36 AC 3,892 ms
36,536 KB
testcase_37 AC 3,840 ms
36,552 KB
testcase_38 AC 3,980 ms
37,372 KB
testcase_39 TLE -
testcase_40 AC 2 ms
6,940 KB
testcase_41 AC 2 ms
6,944 KB
testcase_42 AC 2 ms
6,944 KB
testcase_43 AC 1 ms
6,944 KB
testcase_44 AC 2 ms
6,944 KB
testcase_45 AC 3 ms
6,944 KB
testcase_46 AC 3,954 ms
37,544 KB
testcase_47 AC 3,994 ms
37,604 KB
testcase_48 AC 3,912 ms
37,532 KB
testcase_49 AC 3,597 ms
34,804 KB
testcase_50 AC 3,880 ms
37,340 KB
testcase_51 AC 3,926 ms
37,524 KB
testcase_52 AC 3,934 ms
37,696 KB
testcase_53 AC 3,893 ms
36,948 KB
testcase_54 AC 3,953 ms
37,676 KB
testcase_55 AC 3,993 ms
37,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

int ri() {
	int n;
	scanf("%d", &n);
	return n;
}

struct SegTreeAll {
	std::vector<bool> data;
	int n;
	SegTreeAll (int n_) {
		for (n = 1; n < n_; n <<= 1);
		data.resize(n << 1);
		for (int i = n_; i < n; i++) data[i + n] = true;
		for (int i = n - 1; i; i--) data[i] = data[i << 1] && data[i << 1 | 1];
	}
	void set(int i, int val) {
		for (data[i += n] = val; i >>= 1; ) data[i] = data[i << 1] && data[i << 1 | 1];
	}
	bool all(int l, int r) {
		int res = true;
		for (l += n, r += n; l < r; l >>= 1, r >>= 1) {
			if (r & 1) res &= data[--r];
			if (l & 1) res &= data[l++];
		}
		return res;
	}
};

int main() {
	int n = ri(), x = ri();
	int a[n];
	for (auto &i : a) i = ri();
	
	int64_t sum[n + 1];
	sum[0] = 0;
	for (int i = 0; i < n; i++) sum[i + 1] = a[i] + sum[i];
	
	int left[n + 1], right[n + 1];
	for (int i = 0; i <= n; i++) {
		left[i] = std::lower_bound(sum, sum + n + 1, sum[i] - x) - sum;
		right[i] = std::upper_bound(sum, sum + n + 1, sum[i] + x) - sum - 1;
	}
	
	std::vector<SegTreeAll> r0(n + 1, SegTreeAll(1));
	std::vector<SegTreeAll> r1(n + 1, SegTreeAll(1));
	for (int i = 0; i <= n; i++) r0[i] = SegTreeAll(n - i + 1);
	for (int i = 0; i <= n; i++) r1[i] = SegTreeAll(i + 1);
	
	bool dp[n + 1][n + 1];
	memset(dp, 0, sizeof(dp));
	for (int i = 0; i <= n; i++) {
		dp[i][i] = true;
		r0[i].set(0, true);
		r1[i].set(i, true);
	}
	for (int i = 1; i <= n; i++) {
		for (int j = 0; j + i <= n; j++) {
			int k = j + i;
			dp[j][k] = false;
			// dp[j][k][?]
			// eat left -> dp[j + 1, right[j]][k]
			if (j < right[j] && !r1[k].all(j + 1, std::min(k, right[j] + 1))) {
				dp[j][k] = true;
			}
			// eat right -> dp[j][[left[k], k)]
			if (left[k] < k && !r0[j].all(std::max(0, left[k] - j), k - j)) {
				dp[j][k] = true;
			}
			r0[j].set(k - j, dp[j][k]);
			r1[k].set(j, dp[j][k]);
		}
	}
	/*
	for (int i = 0; i < n; i++) {
		for (int j = i + 1; j <= n; j++) {
			std::cerr << i << "," << j << " : " << dp[i][j][0] << "," << dp[i][j][1] << std::endl;
		}
	}*/
	puts(dp[0][n] ? "A" : "B");
	return 0;
}
0