結果

問題 No.973 余興
ユーザー FF256grhyFF256grhy
提出日時 2020-01-18 15:17:11
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,864 bytes
コンパイル時間 1,700 ms
コンパイル使用メモリ 177,572 KB
実行使用メモリ 430,244 KB
最終ジャッジ日時 2023-09-09 22:30:54
合計ジャッジ時間 38,229 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 1,247 ms
428,140 KB
testcase_06 AC 1,285 ms
428,816 KB
testcase_07 AC 1,309 ms
428,288 KB
testcase_08 AC 1,243 ms
428,444 KB
testcase_09 AC 1,249 ms
429,084 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 253 ms
173,916 KB
testcase_14 WA -
testcase_15 AC 38 ms
19,876 KB
testcase_16 AC 37 ms
20,752 KB
testcase_17 WA -
testcase_18 AC 29 ms
17,236 KB
testcase_19 AC 30 ms
17,480 KB
testcase_20 AC 22 ms
15,476 KB
testcase_21 AC 38 ms
20,628 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 30 ms
17,024 KB
testcase_29 WA -
testcase_30 AC 831 ms
428,592 KB
testcase_31 AC 853 ms
428,672 KB
testcase_32 AC 845 ms
428,084 KB
testcase_33 AC 868 ms
428,308 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 808 ms
420,468 KB
testcase_37 AC 815 ms
420,104 KB
testcase_38 WA -
testcase_39 AC 862 ms
428,408 KB
testcase_40 AC 2 ms
4,380 KB
testcase_41 AC 1 ms
4,376 KB
testcase_42 AC 2 ms
4,376 KB
testcase_43 AC 1 ms
4,380 KB
testcase_44 WA -
testcase_45 AC 2 ms
4,376 KB
testcase_46 WA -
testcase_47 AC 874 ms
428,236 KB
testcase_48 WA -
testcase_49 AC 780 ms
406,172 KB
testcase_50 WA -
testcase_51 AC 852 ms
428,180 KB
testcase_52 AC 865 ms
429,616 KB
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
権限があれば一括ダウンロードができます

ソースコード

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)

// ---- ----

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

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

int main() {
	LL n, x;
	cin >> n >> x;
	vector<LL> a(n), s(n + 1);
	inc(i, n) { cin >> a[i]; }
	inc(i, n) { s[i + 1] = s[i] + a[i]; }
	
	auto dp = MV(0, 2, n + 1, n + 1);
	vector<pair<int, int>> p;
	incII(d, 0, n) {
	incII(i, 0, n) {
		int j = i + d;
		if_not(j <= n) { continue; }
		
		if(d == 0) { dp[0][i][j] = dp[1][i][j] = +1; }
		if(d == 1) { dp[0][i][j] = dp[1][i][j] = -1; }
		if(d >= 1) { p.EB(i, j); }
	}
	}
	RF(e, p) {
		int i = e.FI;
		int j = e.SE;
		
		dp[0][i][j] += dp[0][i + 1][j];
		if(dp[0][i][j] == 0) {
			int r = UB(s, s[i + 1] + x);
			if(j + 1 <= n) { dp[1][i][j + 1]++; }
			if(r     <= n) { dp[1][i][r    ]--; }
		}
		
		dp[1][i][j] += dp[1][i][j - 1];
		if(dp[1][i][j] == 0) {
			int l = LB(s, s[i] - x);
			if(0 <= i - 1) { dp[0][i - 1][j]++; }
			if(0 <= l - 1) { dp[0][l - 1][j]--; }
		}
	}
	
	cout << (dp[0][0][n] != 0 ? "A" : "B") << endl;
	
	return 0;
}
0