結果

問題 No.973 余興
ユーザー kotamanegikotamanegi
提出日時 2020-01-17 22:40:54
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,143 bytes
コンパイル時間 2,297 ms
コンパイル使用メモリ 165,968 KB
実行使用メモリ 225,248 KB
最終ジャッジ日時 2024-05-07 20:15:14
合計ジャッジ時間 25,525 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 428 ms
223,108 KB
testcase_06 AC 424 ms
223,364 KB
testcase_07 AC 429 ms
224,772 KB
testcase_08 AC 445 ms
222,984 KB
testcase_09 AC 450 ms
224,136 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 273 ms
214,520 KB
testcase_14 WA -
testcase_15 AC 77 ms
203,428 KB
testcase_16 AC 75 ms
203,432 KB
testcase_17 WA -
testcase_18 AC 73 ms
203,940 KB
testcase_19 AC 73 ms
203,176 KB
testcase_20 AC 70 ms
202,408 KB
testcase_21 AC 76 ms
204,328 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 76 ms
203,052 KB
testcase_29 WA -
testcase_30 AC 711 ms
223,620 KB
testcase_31 AC 716 ms
223,492 KB
testcase_32 AC 690 ms
224,516 KB
testcase_33 AC 695 ms
224,392 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 677 ms
223,364 KB
testcase_37 AC 673 ms
223,620 KB
testcase_38 WA -
testcase_39 AC 688 ms
224,136 KB
testcase_40 AC 58 ms
200,464 KB
testcase_41 AC 58 ms
199,828 KB
testcase_42 AC 57 ms
199,956 KB
testcase_43 AC 57 ms
200,216 KB
testcase_44 WA -
testcase_45 AC 59 ms
199,456 KB
testcase_46 WA -
testcase_47 AC 790 ms
224,900 KB
testcase_48 WA -
testcase_49 AC 675 ms
222,568 KB
testcase_50 WA -
testcase_51 AC 773 ms
224,644 KB
testcase_52 AC 566 ms
223,744 KB
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:1:18: warning: '#pragma comment linker' ignored [-Wignored-pragmas]
    1 | #pragma comment (linker, "/STACK:256000000")
      |                  ^
1 warning generated.

ソースコード

diff #

#pragma comment (linker, "/STACK:256000000")
#define  _CRT_SECURE_NO_WARNINGS
#include "bits/stdc++.h"

using namespace std;
typedef string::const_iterator State;
#define eps 1e-11L
#define MAX_MOD 1000000007LL
#define GYAKU 500000004LL

#define MOD 998244353LL
#define seg_size 262144
#define pb push_back
#define mp make_pair
typedef long long ll;
#define REP(a,b) for(long long (a) = 0;(a) < (b);++(a))
#define ALL(x) (x).begin(),(x).end()
void init() {
	iostream::sync_with_stdio(false);
	cout << fixed << setprecision(100);
}
bool ans[5000][5000] = {};
bool visited[5000][5000] = {};
int next_go[2][5000 * 5000] = {};
int union_find(int now, bool dir) {
	if (next_go[dir][now] == now) return now;
	return next_go[dir][now] = union_find(next_go[dir][now], dir);
}
pair<int, int> to_pair(int now) {
	return mp(now / 5000, now % 5000);
}
int to_int(pair<int,int> now) {
	return now.first * 5000 + now.second;
}
ll summing[7000] = {};
ll calc_sum(int a, int b) {
	return summing[b+1] - summing[a];
}
void solve() {
	ll n, x;
	cin >> n >> x;
	vector<ll> inputs;
	REP(i, n) {
		int a;
		cin >> a;
		inputs.pb(a);
	}
	for (int i = 0; i < inputs.size(); ++i) {
		summing[i + 1] += inputs[i] + summing[i];
	}
	for (int i = inputs.size(); i + 1 < 7000; ++i) {
		summing[i + 1] = summing[i];
	}
	REP(i, 5000) {
		REP(q, 5000) {
			next_go[0][i*5000+q] = next_go[1][i*5000+q] = i*5000+q;
		}
	}
	for (int i = 0; i < n; ++i) {
		for (int q = i; q >= 0; --q) {
			if (ans[i][q] == 1) continue;
			{
				//dir = 0
				while (true) {
					int next = union_find(i * 5000 + q, 0);
					if (next/5000 == 0) break;
					if (calc_sum(next/5000 - 1, i - 1) > x) break;
					ans[next/5000 - 1][q] = 1;
					next_go[0][next] = next - 5000;
				}
			}
			{
				//dir = 1
				while (true) {
					int next = union_find(i * 5000 + q, 1);
					if (next % 5000 == n-1) break;
					if (calc_sum(q+1, next % 5000 + 1) > x) break;
					ans[next / 5000][next % 5000 + 1] = 1;
					next_go[1][next] = next + 1;
				}
			}
		}
	}
	if (ans[0][n - 1] == 0) {
		cout << "B" << endl;
	}
	else {
		cout << "A" << endl;
	}
	return;
}

#undef int

int main() {
	init();
	solve();
}
0