結果

問題 No.17 2つの地点に泊まりたい
ユーザー rn4rurn4ru
提出日時 2016-04-13 03:35:50
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,095 bytes
コンパイル時間 2,446 ms
コンパイル使用メモリ 77,256 KB
実行使用メモリ 57,816 KB
最終ジャッジ日時 2024-10-04 06:50:33
合計ジャッジ時間 6,810 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
53,868 KB
testcase_01 AC 109 ms
54,140 KB
testcase_02 AC 106 ms
52,912 KB
testcase_03 AC 138 ms
54,044 KB
testcase_04 AC 153 ms
54,064 KB
testcase_05 WA -
testcase_06 AC 181 ms
56,600 KB
testcase_07 AC 176 ms
56,808 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 119 ms
53,944 KB
testcase_13 AC 121 ms
54,072 KB
testcase_14 AC 115 ms
54,172 KB
testcase_15 AC 101 ms
52,904 KB
testcase_16 AC 104 ms
52,980 KB
testcase_17 AC 119 ms
53,916 KB
testcase_18 AC 150 ms
54,400 KB
testcase_19 AC 137 ms
54,172 KB
testcase_20 WA -
testcase_21 AC 118 ms
54,236 KB
testcase_22 AC 140 ms
54,288 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 128 ms
54,276 KB
testcase_26 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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 / 4;
		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);
	}

}
0