結果

問題 No.17 2つの地点に泊まりたい
ユーザー ぴろずぴろず
提出日時 2014-12-19 13:59:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 205 ms / 5,000 ms
コード長 935 bytes
コンパイル時間 2,321 ms
コンパイル使用メモリ 76,524 KB
実行使用メモリ 45,940 KB
最終ジャッジ日時 2024-10-15 01:17:59
合計ジャッジ時間 6,940 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
39,840 KB
testcase_01 AC 107 ms
39,508 KB
testcase_02 AC 128 ms
40,892 KB
testcase_03 AC 166 ms
41,480 KB
testcase_04 AC 159 ms
41,884 KB
testcase_05 AC 199 ms
43,636 KB
testcase_06 AC 186 ms
43,328 KB
testcase_07 AC 168 ms
42,868 KB
testcase_08 AC 205 ms
45,940 KB
testcase_09 AC 200 ms
45,252 KB
testcase_10 AC 188 ms
41,868 KB
testcase_11 AC 191 ms
42,828 KB
testcase_12 AC 116 ms
40,844 KB
testcase_13 AC 120 ms
40,940 KB
testcase_14 AC 104 ms
39,676 KB
testcase_15 AC 112 ms
40,924 KB
testcase_16 AC 122 ms
41,168 KB
testcase_17 AC 130 ms
41,364 KB
testcase_18 AC 158 ms
41,564 KB
testcase_19 AC 135 ms
40,952 KB
testcase_20 AC 120 ms
40,476 KB
testcase_21 AC 115 ms
39,896 KB
testcase_22 AC 147 ms
41,252 KB
testcase_23 AC 195 ms
43,576 KB
testcase_24 AC 189 ms
42,820 KB
testcase_25 AC 134 ms
41,124 KB
testcase_26 AC 204 ms
44,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no017;

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[] s = new int[n];
		for(int i=0;i<n;i++) {
			s[i] = sc.nextInt();
		}
		int m = sc.nextInt();
		int[][] dist = new int[n][n];
		for(int i=0;i<n;i++) {
			for(int j=0;j<n;j++) {
				if (i != j) {
					dist[i][j] = 1 << 29;
				}
			}
		}
		for(int i=0;i<m;i++) {
			int a = sc.nextInt();
			int b = sc.nextInt();
			int c = sc.nextInt();
			dist[a][b] = dist[b][a] = c;
		}
		for(int k=0;k<n;k++) {
			for(int i=0;i<n;i++) {
				for(int j=0;j<n;j++) {
					dist[i][j] = Math.min(dist[i][j], dist[i][k] + dist[k][j]);
				}
			}
		}
		int ans = 1 << 29;
		for(int i=1;i<n-1;i++) {
			for(int j=1;j<n-1;j++) {
				if (i == j) {
					continue;
				}
				ans = Math.min(ans, dist[0][i]+dist[i][j]+dist[j][n-1]+s[i]+s[j]);;
			}
		}
		System.out.println(ans);
	}

}
0