結果
問題 | No.17 2つの地点に泊まりたい |
ユーザー | rn4ru |
提出日時 | 2016-04-13 03:32:57 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,095 bytes |
コンパイル時間 | 2,166 ms |
コンパイル使用メモリ | 77,756 KB |
実行使用メモリ | 57,880 KB |
最終ジャッジ日時 | 2024-10-04 06:48:39 |
合計ジャッジ時間 | 6,825 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 112 ms
54,108 KB |
testcase_01 | AC | 109 ms
54,116 KB |
testcase_02 | AC | 117 ms
54,052 KB |
testcase_03 | WA | - |
testcase_04 | AC | 155 ms
54,488 KB |
testcase_05 | WA | - |
testcase_06 | AC | 168 ms
56,936 KB |
testcase_07 | AC | 165 ms
56,524 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 95 ms
52,564 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 118 ms
54,040 KB |
testcase_26 | WA | - |
ソースコード
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int N = scanner.nextInt(); int[] S = new int[N]; for (int i = 0; i < N; i++) { S[i] = scanner.nextInt(); } int M = scanner.nextInt(); final int INF = Integer.MAX_VALUE / 2; int[][] dist = new int[N][N]; for (int i = 0; i < N; i++) { for (int j = 0; j < N; j++) { dist[i][j] = INF; } } for (int i = 0; i < N; i++) { dist[i][i] = 0; } for (int i = 0; i < M; i++) { int A = scanner.nextInt(); int B = scanner.nextInt(); int C = scanner.nextInt(); dist[A][B] = C; dist[B][A] = C; } for (int i = 0; i < N; i++) { for (int j = 0; j < N; j++) { for (int k = 0; k < N; k++) { dist[i][j] = Math.min(dist[i][j], dist[i][k] + dist[k][j]); } } } int min = INF; for (int i = 1; i < N - 1; i++) { for (int j = 1; j < N - 1; j++) { if (i == j) continue; min = Math.min(min, dist[0][i] + dist[i][j] + dist[j][N - 1] + S[i] + S[j]); } } System.out.println(min); } }