結果

問題 No.1211 円環はお断り
ユーザー e869120e869120
提出日時 2021-02-26 09:22:01
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,209 bytes
コンパイル時間 858 ms
コンパイル使用メモリ 68,756 KB
実行使用メモリ 43,356 KB
最終ジャッジ日時 2024-10-01 23:11:38
合計ジャッジ時間 18,762 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 3 ms
6,820 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 WA -
testcase_06 AC 3 ms
6,820 KB
testcase_07 AC 3 ms
6,820 KB
testcase_08 WA -
testcase_09 AC 3 ms
6,816 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 3 ms
6,816 KB
testcase_12 AC 2 ms
6,816 KB
testcase_13 AC 382 ms
24,816 KB
testcase_14 AC 395 ms
31,128 KB
testcase_15 AC 576 ms
31,028 KB
testcase_16 AC 1,376 ms
41,584 KB
testcase_17 AC 42 ms
9,716 KB
testcase_18 AC 475 ms
27,616 KB
testcase_19 AC 46 ms
9,956 KB
testcase_20 AC 59 ms
10,764 KB
testcase_21 AC 58 ms
9,864 KB
testcase_22 AC 380 ms
25,332 KB
testcase_23 AC 406 ms
28,552 KB
testcase_24 AC 212 ms
18,564 KB
testcase_25 AC 8 ms
8,416 KB
testcase_26 AC 614 ms
31,968 KB
testcase_27 AC 243 ms
20,104 KB
testcase_28 AC 659 ms
32,756 KB
testcase_29 AC 464 ms
27,264 KB
testcase_30 AC 763 ms
34,988 KB
testcase_31 AC 215 ms
18,112 KB
testcase_32 AC 933 ms
39,628 KB
testcase_33 AC 1,133 ms
41,972 KB
testcase_34 AC 1,159 ms
42,572 KB
testcase_35 AC 1,181 ms
41,468 KB
testcase_36 AC 1,369 ms
41,580 KB
testcase_37 AC 1,194 ms
41,708 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 2 ms
6,820 KB
testcase_42 AC 3 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
using namespace std;

long long N, K;
long long A[1 << 18], B[1 << 18];
long long par[1 << 18][22];
long long maxval = 0;
bool used[22];

bool solve(long long border) {
	int pos1 = 0;
	for (int i = 0; i <= 2 * N; i++) {
		while (pos1 < 2 * N && B[i] + border > B[pos1]) pos1++;
		par[i][0] = pos1;
	}
	for (int i = 0; i < maxval; i++) {
		for (int j = 0; j <= 2 * N; j++) par[j][i + 1] = par[par[j][i]][i];
	}

	for (int i = 0; i < N; i++) {
		int cx = i;
		for (int j = maxval; j >= 0; j--) {
			if (used[j] == true) cx = par[cx][j];
		}
		if (cx <= i + N) return true;
	}
	return false;
}

int main() {
	cin >> N >> K;
	for (int i = 0; i < N; i++) cin >> A[i];
	for (int i = N; i <= 2 * N; i++) A[i] = A[i - N];
	for (int i = 0; i <= 2 * N; i++) B[i + 1] = B[i] + A[i];
	for (int i = 0; i < 22; i++) {
		if ((K / (1LL << i)) % 2 == 1) { used[i] = true; maxval = i; }
	}

	long long cl = 0, cr = B[N] / K, cm, maxn = 0, cnt = 0;
	for (int i = 0; i < 53; i++) {
		if (cr - cl <= 2) cnt++;
		if (cnt >= 4) break;
		cm = (cl + cr) / 2LL;
		bool I = solve(cm);
		if (I == true) { maxn = max(maxn, cm); cl = cm; }
		else { cr = cm; }
	}
	cout << maxn << endl;
	return 0;
}
0