結果

問題 No.1211 円環はお断り
ユーザー ks2mks2m
提出日時 2020-08-30 14:40:03
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,264 bytes
コンパイル時間 4,018 ms
コンパイル使用メモリ 77,744 KB
実行使用メモリ 126,256 KB
最終ジャッジ日時 2024-11-15 07:52:00
合計ジャッジ時間 81,249 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
57,084 KB
testcase_01 AC 54 ms
111,968 KB
testcase_02 AC 53 ms
57,148 KB
testcase_03 AC 53 ms
112,012 KB
testcase_04 AC 53 ms
57,100 KB
testcase_05 AC 53 ms
114,052 KB
testcase_06 AC 53 ms
57,268 KB
testcase_07 AC 56 ms
115,708 KB
testcase_08 AC 54 ms
57,056 KB
testcase_09 AC 64 ms
109,572 KB
testcase_10 AC 57 ms
56,692 KB
testcase_11 AC 61 ms
112,224 KB
testcase_12 AC 54 ms
56,984 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 574 ms
117,352 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 AC 808 ms
69,572 KB
testcase_39 AC 813 ms
69,316 KB
testcase_40 AC 289 ms
61,236 KB
testcase_41 AC 55 ms
50,288 KB
testcase_42 AC 54 ms
122,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.HashSet;
import java.util.Set;

public class Main {
	static int n, k;
	static int[] a;

	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		n = Integer.parseInt(sa[0]);
		k = Integer.parseInt(sa[1]);
		sa = br.readLine().split(" ");
		long sum = 0;
		a = new int[n];
		for (int i = 0; i < n; i++) {
			a[i] = Integer.parseInt(sa[i]);
			sum += a[i];
		}
		br.close();

		long ok = 0;
		long ng = sum / k + 1;
		while (Math.abs(ok - ng) > 1) {
			long mid = (ok + ng) / 2;
			if (can(mid)) {
				ok = mid;
			} else {
				ng = mid;
			}
		}
		System.out.println(ok);
	}

	static boolean can(long mid) {
		Set<Integer> set = new HashSet<>();
		for (int i = 0; i < n; i++) {
			if (set.contains(i - 1)) {
				continue;
			}
			long sum = 0;
			int cnt = 0;
			boolean flg = false;
			for (int j = i; j < i + n; j++) {
				int idx = j % n;
				sum += a[idx];
				if (sum >= mid) {
					cnt++;
					sum = 0;
					if (flg) {
						set.add(idx);
					} else {
						flg = true;
					}
				}
			}
			if (cnt >= k) {
				return true;
			}
		}
		return false;
	}
}
0