結果
問題 | No.134 走れ!サブロー君 |
ユーザー | ぴろず |
提出日時 | 2015-01-23 09:43:34 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 205 ms / 5,000 ms |
コード長 | 1,323 bytes |
コンパイル時間 | 2,199 ms |
コンパイル使用メモリ | 76,432 KB |
実行使用メモリ | 43,580 KB |
最終ジャッジ日時 | 2024-10-14 17:12:00 |
合計ジャッジ時間 | 5,041 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 135 ms
41,404 KB |
testcase_01 | AC | 129 ms
41,400 KB |
testcase_02 | AC | 129 ms
41,036 KB |
testcase_03 | AC | 142 ms
41,304 KB |
testcase_04 | AC | 136 ms
41,348 KB |
testcase_05 | AC | 144 ms
41,544 KB |
testcase_06 | AC | 162 ms
42,032 KB |
testcase_07 | AC | 164 ms
42,548 KB |
testcase_08 | AC | 179 ms
43,140 KB |
testcase_09 | AC | 205 ms
43,580 KB |
testcase_10 | AC | 114 ms
40,024 KB |
testcase_11 | AC | 128 ms
41,368 KB |
testcase_12 | AC | 128 ms
41,116 KB |
testcase_13 | AC | 128 ms
41,092 KB |
testcase_14 | AC | 127 ms
41,088 KB |
ソースコード
package no134; import java.util.Arrays; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int[] x = new int[14]; int[] y = new int[14]; double[] w = new double[14]; x[0] = sc.nextInt(); y[0] = sc.nextInt(); int n = sc.nextInt(); for(int i=1;i<=n;i++) { x[i] = sc.nextInt(); y[i] = sc.nextInt(); w[i] = sc.nextDouble(); } n++; int[][] d = new int[n][n]; for(int i=0;i<n;i++) { for(int j=0;j<n;j++) { d[i][j] = Math.abs(x[i] - x[j]) + Math.abs(y[i] - y[j]); } } double[][] dp = new double[n][1<<n]; for(int i=0;i<n;i++) { Arrays.fill(dp[i], 1E10); } dp[0][0] = 0; for(int s=0;s<1<<n;s++) { double t = 0; for(int i=0;i<n;i++) { if ((s >> i & 1) == 0) { t += w[i]; } } t = (t + 100) / 120; for(int i=0;i<n;i++) { if (dp[i][s] >= 1E10) { continue; } for(int j=0;j<n;j++) { if (i == j || (s >> j & 1) == 1) { continue; } // System.out.println("(" + i + "," + Integer.toBinaryString(s) + ") -> (" + j + "," + Integer.toBinaryString(s | 1 << j) + ") : " + (dp[i][s] + d[i][j] * t)); dp[j][s | 1 << j] = Math.min(dp[j][s | 1 << j], dp[i][s] + (d[i][j] * t + w[j])); } } } System.out.println(dp[0][(1<<n)-1]); } }