結果

問題 No.973 余興
ユーザー jupirojupiro
提出日時 2020-01-18 18:30:06
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,300 ms / 4,000 ms
コード長 2,397 bytes
コンパイル時間 1,184 ms
コンパイル使用メモリ 121,140 KB
実行使用メモリ 394,752 KB
最終ジャッジ日時 2024-06-27 23:53:37
合計ジャッジ時間 72,889 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,976 ms
394,752 KB
testcase_01 AC 1,976 ms
394,624 KB
testcase_02 AC 2,004 ms
394,368 KB
testcase_03 AC 1,979 ms
394,496 KB
testcase_04 AC 1,957 ms
394,624 KB
testcase_05 AC 1,998 ms
394,624 KB
testcase_06 AC 2,027 ms
394,496 KB
testcase_07 AC 1,977 ms
394,496 KB
testcase_08 AC 1,969 ms
393,216 KB
testcase_09 AC 2,002 ms
394,752 KB
testcase_10 AC 1,902 ms
379,136 KB
testcase_11 AC 568 ms
144,256 KB
testcase_12 AC 564 ms
144,384 KB
testcase_13 AC 559 ms
143,232 KB
testcase_14 AC 555 ms
143,360 KB
testcase_15 AC 47 ms
18,944 KB
testcase_16 AC 47 ms
19,456 KB
testcase_17 AC 28 ms
13,184 KB
testcase_18 AC 36 ms
16,128 KB
testcase_19 AC 37 ms
16,128 KB
testcase_20 AC 27 ms
12,800 KB
testcase_21 AC 45 ms
19,072 KB
testcase_22 AC 44 ms
19,200 KB
testcase_23 AC 37 ms
16,128 KB
testcase_24 AC 38 ms
15,744 KB
testcase_25 AC 16 ms
8,832 KB
testcase_26 AC 27 ms
12,800 KB
testcase_27 AC 56 ms
21,632 KB
testcase_28 AC 37 ms
16,128 KB
testcase_29 AC 36 ms
15,744 KB
testcase_30 AC 2,130 ms
394,624 KB
testcase_31 AC 2,162 ms
394,752 KB
testcase_32 AC 2,162 ms
394,752 KB
testcase_33 AC 2,124 ms
394,496 KB
testcase_34 AC 2,300 ms
392,832 KB
testcase_35 AC 2,160 ms
394,624 KB
testcase_36 AC 2,065 ms
384,128 KB
testcase_37 AC 2,095 ms
384,256 KB
testcase_38 AC 2,149 ms
393,344 KB
testcase_39 AC 2,155 ms
393,728 KB
testcase_40 AC 2 ms
6,944 KB
testcase_41 AC 2 ms
6,940 KB
testcase_42 AC 2 ms
6,944 KB
testcase_43 AC 2 ms
6,940 KB
testcase_44 AC 2 ms
6,944 KB
testcase_45 AC 2 ms
6,944 KB
testcase_46 AC 2,118 ms
394,752 KB
testcase_47 AC 2,127 ms
394,496 KB
testcase_48 AC 2,097 ms
394,752 KB
testcase_49 AC 1,959 ms
363,904 KB
testcase_50 AC 2,172 ms
391,552 KB
testcase_51 AC 2,110 ms
394,752 KB
testcase_52 AC 2,076 ms
394,752 KB
testcase_53 AC 2,007 ms
387,840 KB
testcase_54 AC 2,083 ms
394,752 KB
testcase_55 AC 2,079 ms
394,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <iostream>
#include <string>
#include <sstream>
#include <stack>
#include <algorithm>
#include <cmath>
#include <queue>
#include <map>
#include <set>
#include <cstdlib>
#include <bitset>
#include <tuple>
#include <assert.h>
#include <deque>
#include <bitset>
#include <iomanip>
#include <limits>
#include <chrono>
#include <random>
#include <array>
#include <unordered_map>
#include <functional>
#include <complex>

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; }

const long long MAX = 5100000;
const long long INF = 1LL << 60;
const long long mod = 1000000007LL;
//const long long mod = 998244353LL;

using namespace std;
typedef unsigned long long ull;
typedef long long ll;

class BIT {
private:
	ll N;
	vector<ll> node;
public:
	BIT(ll M) {
		node = vector<ll>(M + 1, 0);
		N = M;
	}

	ll sum(ll i) {
		ll s = 0;
		while (i > 0) {
			s += node[i];
			i -= i & -i;
		}
		return s;
	}

	ll sum(ll i, ll j) {
		ll l = sum(i - 1);
		ll r = sum(j);
		return r - l;
	}

	void add(ll i, ll x) {
		while (i <= N) {
			node[i] += x;
			i += i & -i;
		}
	}
};


int main()
{
	/*
	cin.tie(nullptr);
	ios::sync_with_stdio(false);
	*/

	ll N, X; scanf("%lld %lld", &N, &X);
	vector<ll> a(N); for (ll i = 0; i < N; i++) scanf("%lld", &a[i]);
	vector<ll> rb(N);
	vector<ll> lb(N);
	for (ll i = 0; i < N; i++) {
		ll j = i;
		ll sum = 0;
		while (j < N && sum + a[j] <= X) {
			rb[i] = j;
			sum += a[j];
			j++;
		}
	}
	for (ll i = N - 1; i >= 0; i--) {
		ll j = i;
		ll sum = 0;
		while (j >= 0 && sum + a[j] <= X) {
			lb[i] = j;
			sum += a[j];
			j--;
		}
	}

	vector<BIT> vbl(N, BIT(N + 1)), vbr(N, BIT(N + 1));

	for (ll len = 1; len <= N; len++) {
		for (ll left = 0; left + len - 1 < N; left++) {
			ll right = left + len - 1;
			ll lose = 1;
			//cout << right << endl;
			if (vbl[left].sum(max(left, lb[right] - 1) + 1, right)) lose = 0;
			if (vbr[right].sum(left + 2, min(right, rb[left] + 1) + 1)) lose = 0;
			if (lose) {
				vbl[left].add(right + 1, 1);
				vbr[right].add(left + 1, 1);
			}
			//cout << left << " " << right << " " << rb[left]<<" "<<lb[right]<< " "<<vbl[left].sum(right + 1, right + 1) << " " << vbr[right].sum(left + 1, left + 1) << endl;
		}
	}
	if (vbl[0].sum(N,N)) puts("B");
	else puts("A");
	return 0;
}
0