結果

問題 No.2354 Poor Sight in Winter
ユーザー ks2mks2m
提出日時 2023-06-16 22:23:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 313 ms / 2,000 ms
コード長 1,307 bytes
コンパイル時間 2,210 ms
コンパイル使用メモリ 77,576 KB
実行使用メモリ 55,332 KB
最終ジャッジ日時 2024-06-24 14:57:10
合計ジャッジ時間 8,928 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
53,880 KB
testcase_01 AC 112 ms
52,968 KB
testcase_02 AC 131 ms
54,288 KB
testcase_03 AC 129 ms
54,128 KB
testcase_04 AC 130 ms
54,124 KB
testcase_05 AC 127 ms
54,104 KB
testcase_06 AC 129 ms
53,984 KB
testcase_07 AC 128 ms
54,012 KB
testcase_08 AC 129 ms
54,464 KB
testcase_09 AC 128 ms
54,132 KB
testcase_10 AC 128 ms
54,056 KB
testcase_11 AC 243 ms
54,908 KB
testcase_12 AC 284 ms
55,304 KB
testcase_13 AC 269 ms
55,044 KB
testcase_14 AC 286 ms
54,984 KB
testcase_15 AC 255 ms
55,292 KB
testcase_16 AC 262 ms
54,924 KB
testcase_17 AC 313 ms
55,332 KB
testcase_18 AC 234 ms
54,724 KB
testcase_19 AC 248 ms
55,024 KB
testcase_20 AC 207 ms
54,676 KB
testcase_21 AC 167 ms
54,256 KB
testcase_22 AC 214 ms
54,692 KB
testcase_23 AC 198 ms
54,376 KB
testcase_24 AC 283 ms
54,904 KB
testcase_25 AC 201 ms
54,740 KB
testcase_26 AC 196 ms
54,604 KB
testcase_27 AC 138 ms
54,028 KB
testcase_28 AC 165 ms
54,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int k = sc.nextInt();
		int[] x = new int[n + 2];
		int[] y = new int[n + 2];
		x[0] = sc.nextInt();
		y[0] = sc.nextInt();
		x[n + 1] = sc.nextInt();
		y[n + 1] = sc.nextInt();
		for (int i = 1; i <= n; i++) {
			x[i] = sc.nextInt();
			y[i] = sc.nextInt();
		}
		sc.close();

		int[] d = new int[n + 2];
		boolean[] fix = new boolean[n + 2];
		int ok = 200000;
		int ng = 0;
		while (Math.abs(ok - ng) > 1) {
			int mid = (ok + ng) / 2;

			Arrays.fill(d, 1000000007);
			d[0] = 0;
			Arrays.fill(fix, false);
			fix[0] = true;
			while (true) {
				int min = 1000000007;
				int cur = 0;
				for (int i = 0; i < d.length; i++) {
					if (!fix[i] && d[i] < min) {
						min = d[i];
						cur = i;
					}
				}
				if (cur == n + 1) {
					break;
				}
				fix[cur] = true;
				for (int next = 1; next <= n + 1; next++) {
					int v1 = Math.abs(x[cur] - x[next])
							+ Math.abs(y[cur] - y[next]);
					int alt = d[cur] + (v1 - 1) / mid;
					if (alt < d[next]) {
						d[next] = alt;
					}
				}
			}

			if (d[n + 1] <= k) {
				ok = mid;
			} else {
				ng = mid;
			}
		}
		System.out.println(ok);
	}
}
0