結果

問題 No.17 2つの地点に泊まりたい
ユーザー GoryudyumaGoryudyuma
提出日時 2017-02-12 22:59:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 224 ms / 5,000 ms
コード長 2,023 bytes
コンパイル時間 2,241 ms
コンパイル使用メモリ 77,140 KB
実行使用メモリ 45,620 KB
最終ジャッジ日時 2024-10-15 01:39:46
合計ジャッジ時間 7,525 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,248 KB
testcase_01 AC 131 ms
40,952 KB
testcase_02 AC 137 ms
41,088 KB
testcase_03 AC 167 ms
41,508 KB
testcase_04 AC 181 ms
41,788 KB
testcase_05 AC 210 ms
43,888 KB
testcase_06 AC 201 ms
42,780 KB
testcase_07 AC 200 ms
42,616 KB
testcase_08 AC 224 ms
45,620 KB
testcase_09 AC 223 ms
45,312 KB
testcase_10 AC 193 ms
42,436 KB
testcase_11 AC 211 ms
43,220 KB
testcase_12 AC 131 ms
41,228 KB
testcase_13 AC 129 ms
41,404 KB
testcase_14 AC 129 ms
40,836 KB
testcase_15 AC 133 ms
40,920 KB
testcase_16 AC 128 ms
41,144 KB
testcase_17 AC 138 ms
41,016 KB
testcase_18 AC 149 ms
41,556 KB
testcase_19 AC 146 ms
41,240 KB
testcase_20 AC 136 ms
41,348 KB
testcase_21 AC 120 ms
40,116 KB
testcase_22 AC 159 ms
41,624 KB
testcase_23 AC 206 ms
43,352 KB
testcase_24 AC 211 ms
44,052 KB
testcase_25 AC 145 ms
41,248 KB
testcase_26 AC 207 ms
44,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
        public static void main(String args[]) {
                try (Scanner sc = new Scanner(System.in)) {
                        int N = sc.nextInt();
                        int[] cost = new int[N];
                        for (int i = 0; i < N; i++) {
                                cost[i] = sc.nextInt();
                        }

                        int M = sc.nextInt();
                        int[][] bridge = new int[N][N];
                        for (int i = 0; i < N; i++) {
                                for (int j = 0; j < N; j++) {
                                        bridge[i][j] = 1 << 25;
                                }
                                bridge[i][i] = 0;
                        }
                        for (int i = 0; i < M; i++) {
                                int a = sc.nextInt(), b = sc.nextInt(), c = sc.nextInt();
                                bridge[a][b] = bridge[b][a] = c;
                        }
                        for (int k = 0; k < N; k++) {
                                for (int i = 0; i < N; i++) {
                                        for (int j = i + 1; j < N; j++) {
                                                bridge[i][j] = Math.min(bridge[i][j], bridge[i][k] + bridge[k][j]);
                                                bridge[j][i] = bridge[i][j];
                                        }
                                }
                        }
                        int ans = 1 << 26;
                        for (int i = 1; i < N - 1; i++) {
                                for (int j = 1; j < N - 1; j++) {
                                        if (i != j) {
                                                ans = Math.min(ans, bridge[0][i] + cost[i] + bridge[i][j] + cost[j] + bridge[j][N-1]);
                                        }
                                }
                        }
                        System.out.println(ans);
                }
        }
}
0