結果

問題 No.198 キャンディー・ボックス2
ユーザー YamaKasaYamaKasa
提出日時 2018-08-09 20:06:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 142 ms / 1,000 ms
コード長 996 bytes
コンパイル時間 2,350 ms
コンパイル使用メモリ 77,372 KB
実行使用メモリ 54,260 KB
最終ジャッジ日時 2024-09-23 04:55:32
合計ジャッジ時間 7,556 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
53,736 KB
testcase_01 AC 134 ms
53,888 KB
testcase_02 AC 132 ms
53,980 KB
testcase_03 AC 131 ms
53,732 KB
testcase_04 AC 132 ms
54,040 KB
testcase_05 AC 133 ms
53,976 KB
testcase_06 AC 133 ms
53,920 KB
testcase_07 AC 131 ms
54,148 KB
testcase_08 AC 135 ms
54,148 KB
testcase_09 AC 131 ms
53,868 KB
testcase_10 AC 133 ms
53,984 KB
testcase_11 AC 133 ms
53,928 KB
testcase_12 AC 139 ms
54,000 KB
testcase_13 AC 138 ms
53,864 KB
testcase_14 AC 139 ms
54,260 KB
testcase_15 AC 142 ms
53,928 KB
testcase_16 AC 134 ms
53,976 KB
testcase_17 AC 134 ms
54,012 KB
testcase_18 AC 133 ms
54,156 KB
testcase_19 AC 132 ms
53,820 KB
testcase_20 AC 132 ms
54,092 KB
testcase_21 AC 134 ms
54,128 KB
testcase_22 AC 134 ms
54,076 KB
testcase_23 AC 136 ms
53,780 KB
testcase_24 AC 135 ms
53,956 KB
testcase_25 AC 135 ms
54,064 KB
testcase_26 AC 135 ms
54,096 KB
testcase_27 AC 135 ms
53,840 KB
testcase_28 AC 135 ms
53,956 KB
testcase_29 AC 119 ms
52,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		long B = scan.nextLong();
		int N = scan.nextInt();
		long[] C = new long[N];
		long sum = B;
		for(int i = 0; i < N; i++) {
			C[i] = scan.nextLong();
			sum += C[i];
		}
		scan.close();
		if(N == 1) {
			System.out.println("0");
			System.exit(0);
		}
		long r = sum / N;
		long l = 0;

		long min = Long.MAX_VALUE;
		while(r - l > 3) {
			// 幅 len = (r - l) / 3
			// x1 = l + len = (2l + r) / 3
			// x2 = x1 + len = (l + 2r) / 3
			long x1 = (l * 2 + r) / 3;
			long x2 = (l + r * 2) / 3;
			long t1 = 0;
			long t2 = 0;
			for(int i = 0; i < N; i++) {
				t1 += Math.abs(x1 - C[i]);
				t2 += Math.abs(x2 - C[i]);
			}
			if(t1 > t2) {
				l = x1;
			}else {
				r = x2;
			}
		}
		for(long i = l; i <= r; i++) {
			long t = 0;
			for(int j = 0; j < N; j++) {
				t += Math.abs(i - C[j]);
			}
			min = Math.min(min, t);
		}
		System.out.println(min);
	}
}
0