結果

問題 No.2955 Pizza Delivery Plan
ユーザー ks2mks2m
提出日時 2024-11-08 22:07:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 362 ms / 2,000 ms
コード長 1,541 bytes
コンパイル時間 3,975 ms
コンパイル使用メモリ 77,920 KB
実行使用メモリ 77,312 KB
最終ジャッジ日時 2024-11-08 22:07:34
合計ジャッジ時間 11,933 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,044 KB
testcase_01 AC 132 ms
41,188 KB
testcase_02 AC 136 ms
41,500 KB
testcase_03 AC 137 ms
41,368 KB
testcase_04 AC 134 ms
41,532 KB
testcase_05 AC 135 ms
41,132 KB
testcase_06 AC 140 ms
41,108 KB
testcase_07 AC 140 ms
41,168 KB
testcase_08 AC 212 ms
52,272 KB
testcase_09 AC 208 ms
52,236 KB
testcase_10 AC 229 ms
56,608 KB
testcase_11 AC 261 ms
56,952 KB
testcase_12 AC 285 ms
57,148 KB
testcase_13 AC 274 ms
59,036 KB
testcase_14 AC 309 ms
68,304 KB
testcase_15 AC 297 ms
68,040 KB
testcase_16 AC 316 ms
68,352 KB
testcase_17 AC 296 ms
68,296 KB
testcase_18 AC 337 ms
77,008 KB
testcase_19 AC 337 ms
76,988 KB
testcase_20 AC 362 ms
77,216 KB
testcase_21 AC 356 ms
77,044 KB
testcase_22 AC 354 ms
76,996 KB
testcase_23 AC 350 ms
76,764 KB
testcase_24 AC 360 ms
77,028 KB
testcase_25 AC 276 ms
57,180 KB
testcase_26 AC 256 ms
57,188 KB
testcase_27 AC 242 ms
56,512 KB
testcase_28 AC 335 ms
77,208 KB
testcase_29 AC 342 ms
77,312 KB
testcase_30 AC 362 ms
77,196 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 + 1];
		int[] y = new int[n + 1];
		for (int i = 0; i < n; i++) {
			x[i] = sc.nextInt();
			y[i] = sc.nextInt();
		}
		sc.close();

		double inf = 1e18;
		int n2 = 1 << n;
		double[][][] dp = new double[n2][n + 1][k + 1];
		for (int i = 0; i < n2; i++) {
			for (int j = 0; j <= n; j++) {
				Arrays.fill(dp[i][j], inf);
			}
		}
		dp[0][n][k] = 0;

		double[][] d = new double[n + 1][n + 1];
		for (int i = 0; i <= n; i++) {
			for (int j = i + 1; j <= n; j++) {
				d[i][j] = d[j][i] = Math.hypot(x[i] - x[j], y[i] - y[j]);
			}
		}

		for (int i = 0; i < n2; i++) {
			for (int j = 0; j < n; j++) {
				if ((i >> j & 1) == 1) {
					for (int j2 = 0; j2 < n; j2++) {
						if ((i >> j2 & 1) == 0) {
							int ni = i | (1 << j2);
							for (int a = 1; a < k; a++) {
								double alt = dp[i][j][a] + d[j][j2];
								dp[ni][j2][a - 1] = Math.min(dp[ni][j2][a - 1], alt);
							}
						}
					}
					for (int a = 0; a < k; a++) {
						double alt = dp[i][j][a] + d[j][n];
						dp[i][n][k] = Math.min(dp[i][n][k], alt);
					}
				}
			}
			for (int j2 = 0; j2 < n; j2++) {
				if ((i >> j2 & 1) == 0) {
					int ni = i | (1 << j2);
					double alt = dp[i][n][k] + d[n][j2];
					dp[ni][j2][k - 1] = Math.min(dp[ni][j2][k - 1], alt);
				}
			}
		}

		System.out.println(dp[n2 - 1][n][k]);
	}
}
0