結果

問題 No.17 2つの地点に泊まりたい
ユーザー kou6839kou6839
提出日時 2014-11-23 12:31:08
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 923 bytes
コンパイル時間 1,849 ms
コンパイル使用メモリ 77,156 KB
実行使用メモリ 45,792 KB
最終ジャッジ日時 2024-06-10 21:35:21
合計ジャッジ時間 6,655 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
40,700 KB
testcase_01 AC 110 ms
41,068 KB
testcase_02 AC 108 ms
40,656 KB
testcase_03 AC 132 ms
41,472 KB
testcase_04 AC 152 ms
42,096 KB
testcase_05 WA -
testcase_06 AC 185 ms
42,964 KB
testcase_07 AC 174 ms
42,896 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 108 ms
41,400 KB
testcase_13 AC 99 ms
40,452 KB
testcase_14 AC 110 ms
41,484 KB
testcase_15 AC 100 ms
40,044 KB
testcase_16 AC 109 ms
41,072 KB
testcase_17 AC 120 ms
41,664 KB
testcase_18 AC 128 ms
41,876 KB
testcase_19 AC 119 ms
41,060 KB
testcase_20 WA -
testcase_21 AC 104 ms
40,440 KB
testcase_22 AC 147 ms
41,672 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 122 ms
41,384 KB
testcase_26 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
 

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[][] miti=new int[n][n];
		for(int i=0;i<n;i++){
			for(int j=0;j<n;j++){
				if(i==j)miti[i][j]=0;
				else miti[i][j]=100000;
			}
		}
		for(int i=0;i<m;i++){
			int a=sc.nextInt();
			int b = sc.nextInt();
			int c = sc.nextInt();
			miti[a][b]=miti[b][a]=c;
		}
		for(int i=0;i<n;i++){
			for(int j=0;j<n;j++){
				for(int k=0;k<n;k++){
					miti[i][j]=Math.min(miti[i][j], miti[i][k]+miti[k][j]);
				}
			}
		}
		int ans=Integer.MAX_VALUE;
		for(int i=1;i<n-1;i++){
			for(int j=1;j<n-1;j++){
				if(i==j) continue;
				ans=Math.min(ans, miti[0][i]+miti[i][j]+miti[j][n-1]+s[i]+s[j]);
			}
		}
		System.out.println(ans);
	}
}	
0