結果

問題 No.973 余興
ユーザー FF256grhyFF256grhy
提出日時 2020-01-18 20:54:33
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,071 ms / 4,000 ms
コード長 3,012 bytes
コンパイル時間 1,774 ms
コンパイル使用メモリ 177,868 KB
実行使用メモリ 297,088 KB
最終ジャッジ日時 2024-06-28 03:25:13
合計ジャッジ時間 32,500 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,071 ms
297,088 KB
testcase_01 AC 1,040 ms
296,960 KB
testcase_02 AC 1,063 ms
296,832 KB
testcase_03 AC 1,064 ms
296,576 KB
testcase_04 AC 1,055 ms
297,088 KB
testcase_05 AC 1,067 ms
296,960 KB
testcase_06 AC 1,046 ms
296,832 KB
testcase_07 AC 1,047 ms
296,576 KB
testcase_08 AC 1,046 ms
295,680 KB
testcase_09 AC 1,057 ms
296,960 KB
testcase_10 AC 1,010 ms
285,312 KB
testcase_11 AC 180 ms
109,184 KB
testcase_12 AC 182 ms
109,184 KB
testcase_13 AC 182 ms
108,288 KB
testcase_14 AC 178 ms
108,416 KB
testcase_15 AC 29 ms
15,104 KB
testcase_16 AC 29 ms
15,360 KB
testcase_17 AC 17 ms
10,624 KB
testcase_18 AC 22 ms
12,800 KB
testcase_19 AC 22 ms
12,800 KB
testcase_20 AC 17 ms
10,496 KB
testcase_21 AC 28 ms
15,104 KB
testcase_22 AC 29 ms
15,232 KB
testcase_23 AC 22 ms
12,800 KB
testcase_24 AC 21 ms
12,672 KB
testcase_25 AC 10 ms
7,552 KB
testcase_26 AC 17 ms
10,496 KB
testcase_27 AC 33 ms
17,024 KB
testcase_28 AC 22 ms
12,928 KB
testcase_29 AC 21 ms
12,672 KB
testcase_30 AC 751 ms
296,960 KB
testcase_31 AC 758 ms
296,960 KB
testcase_32 AC 754 ms
296,960 KB
testcase_33 AC 760 ms
296,576 KB
testcase_34 AC 751 ms
295,552 KB
testcase_35 AC 755 ms
296,960 KB
testcase_36 AC 745 ms
289,152 KB
testcase_37 AC 733 ms
289,024 KB
testcase_38 AC 755 ms
296,064 KB
testcase_39 AC 771 ms
296,448 KB
testcase_40 AC 2 ms
6,940 KB
testcase_41 AC 2 ms
6,940 KB
testcase_42 AC 2 ms
6,940 KB
testcase_43 AC 2 ms
6,944 KB
testcase_44 AC 2 ms
6,944 KB
testcase_45 AC 2 ms
6,940 KB
testcase_46 AC 761 ms
296,960 KB
testcase_47 AC 753 ms
296,832 KB
testcase_48 AC 759 ms
296,960 KB
testcase_49 AC 688 ms
273,920 KB
testcase_50 AC 746 ms
294,656 KB
testcase_51 AC 766 ms
296,960 KB
testcase_52 AC 762 ms
297,088 KB
testcase_53 AC 760 ms
291,968 KB
testcase_54 AC 752 ms
297,088 KB
testcase_55 AC 757 ms
296,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using LL = long long int;
#define incID(i, l, r) for(int i = (l)    ; i <  (r); ++i)
#define incII(i, l, r) for(int i = (l)    ; i <= (r); ++i)
#define decID(i, l, r) for(int i = (r) - 1; i >= (l); --i)
#define decII(i, l, r) for(int i = (r)    ; i >= (l); --i)
#define inc(i, n)  incID(i, 0, n)
#define inc1(i, n) incII(i, 1, n)
#define dec(i, n)  decID(i, 0, n)
#define dec1(i, n) decII(i, 1, n)
#define inID(v, l, r) ((l) <= (v) && (v) <  (r))
#define inII(v, l, r) ((l) <= (v) && (v) <= (r))
#define PB push_back
#define EB emplace_back
#define MP make_pair
#define FI first
#define SE second
#define  ALL(v)  v.begin(),  v.end()
#define RALL(v) v.rbegin(), v.rend()
auto setmin   = [](auto & a, auto b) { return (b <  a ? a = b, true : false); };
auto setmax   = [](auto & a, auto b) { return (b >  a ? a = b, true : false); };
auto setmineq = [](auto & a, auto b) { return (b <= a ? a = b, true : false); };
auto setmaxeq = [](auto & a, auto b) { return (b >= a ? a = b, true : false); };
auto fl = [](auto a, auto b) { assert(b != 0); return a / b - (a % b != 0 && ((a >= 0) != (b >= 0)) ? 1 : 0); };
auto ce = [](auto a, auto b) { assert(b != 0); return a / b + (a % b != 0 && ((a >= 0) == (b >= 0)) ? 1 : 0); };
auto mo = [](auto a, auto b) { assert(b != 0); a %= b; if(a < 0) { a += abs(b); } return a; };
LL gcd(LL a, LL b) { return (b == 0 ? a : gcd(b, a % b)); }
LL lcm(LL a, LL b) { return a / gcd(a, b) * b; }
#define bit(b, i) (((b) >> (i)) & 1)
#define SI(v) static_cast<int>(v.size())
#define RF(e, v) for(auto & e: v)
#define until(e) while(! (e))
#define if_not(e) if(! (e))
#define ef else if
#define UR assert(false)

// ---- ----

#define LB(v, x) (lower_bound(ALL(v), x) - v.begin())
#define UB(v, x) (upper_bound(ALL(v), x) - v.begin())

template<typename T> T MV(T v) { return v; }
template<typename T, typename... R> auto MV(T v, int s, R... r) { return vector<decltype(MV(v, r...))>(s, MV(v, r...)); }

int main() {
	LL n, x;
	cin >> n >> x;
	vector<LL> a(n), s(n + 1), L(n), R(n);
	inc(i, n) { cin >> a[i]; }
	inc(i, n) { s[i + 1] = s[i] + a[i]; }
	
	inc(i, n) { L[i] = LB(s, s[i    ] - x) - 1; }
	inc(j, n) { R[j] = UB(s, s[j + 1] + x) - 1; }
	
	auto dp = MV(0, 2, n, n);
	auto p = [&](int k, int i, int j, int v) {
		if_not(inID(i, 0, n)) { return; }
		if_not(inID(j, 0, n)) { return; }
		dp[k][i][j] += v;
	};
	auto add = [&](int k, int i, int j, int I, int J) {
		p(k, i, j, -1);
		p(k, I, j, +1);
		p(k, i, J, +1);
		p(k, I, J, -1);
	};
	inc(d, n) {
	inc(i, n) {
		int j = i + d;
		if_not(j < n) { continue; }
		if(d > 0) {
			dp[0][i][j] += dp[0][i + 1][j] + dp[0][i][j - 1] - dp[0][i + 1][j - 1];
			dp[1][i][j] += dp[1][i + 1][j] + dp[1][i][j - 1] - dp[1][i + 1][j - 1];
		}
		if(dp[1][i][j] == 0) { add(0, i - 1, j + 1, L[i], j); add(0, i - 1, j + 1, i, R[j]); }
		if(dp[0][i][j] == 0) { add(1, i - 1, j + 1, L[i], j); add(1, i - 1, j + 1, i, R[j]); }
	}
	}
	
	cout << (dp[0][0][n - 1] != 0 ? "A" : "B") << endl;
	
	return 0;
}
0