結果

問題 No.1344 Typical Shortest Path Sum
ユーザー tentententen
提出日時 2021-01-18 12:46:06
言語 Java
(openjdk 23)
結果
AC  
実行時間 242 ms / 2,000 ms
コード長 1,032 bytes
コンパイル時間 2,892 ms
コンパイル使用メモリ 77,236 KB
実行使用メモリ 45,824 KB
最終ジャッジ日時 2024-12-14 02:13:43
合計ジャッジ時間 17,689 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
41,256 KB
testcase_01 AC 136 ms
41,152 KB
testcase_02 AC 137 ms
41,048 KB
testcase_03 AC 146 ms
41,704 KB
testcase_04 AC 145 ms
41,388 KB
testcase_05 AC 140 ms
41,120 KB
testcase_06 AC 122 ms
39,888 KB
testcase_07 AC 139 ms
41,448 KB
testcase_08 AC 121 ms
39,912 KB
testcase_09 AC 145 ms
41,392 KB
testcase_10 AC 135 ms
40,932 KB
testcase_11 AC 130 ms
41,024 KB
testcase_12 AC 135 ms
41,040 KB
testcase_13 AC 137 ms
41,076 KB
testcase_14 AC 138 ms
41,448 KB
testcase_15 AC 119 ms
40,192 KB
testcase_16 AC 160 ms
41,664 KB
testcase_17 AC 133 ms
41,508 KB
testcase_18 AC 120 ms
40,052 KB
testcase_19 AC 131 ms
41,392 KB
testcase_20 AC 133 ms
40,812 KB
testcase_21 AC 138 ms
41,388 KB
testcase_22 AC 135 ms
41,052 KB
testcase_23 AC 139 ms
41,232 KB
testcase_24 AC 134 ms
41,276 KB
testcase_25 AC 133 ms
41,324 KB
testcase_26 AC 134 ms
41,340 KB
testcase_27 AC 133 ms
40,996 KB
testcase_28 AC 138 ms
41,368 KB
testcase_29 AC 133 ms
41,104 KB
testcase_30 AC 137 ms
41,116 KB
testcase_31 AC 135 ms
41,176 KB
testcase_32 AC 134 ms
41,108 KB
testcase_33 AC 131 ms
41,240 KB
testcase_34 AC 134 ms
41,064 KB
testcase_35 AC 134 ms
41,664 KB
testcase_36 AC 136 ms
41,276 KB
testcase_37 AC 137 ms
41,264 KB
testcase_38 AC 135 ms
41,492 KB
testcase_39 AC 140 ms
41,356 KB
testcase_40 AC 175 ms
41,912 KB
testcase_41 AC 186 ms
41,456 KB
testcase_42 AC 170 ms
42,048 KB
testcase_43 AC 173 ms
41,528 KB
testcase_44 AC 176 ms
41,736 KB
testcase_45 AC 174 ms
42,028 KB
testcase_46 AC 177 ms
42,144 KB
testcase_47 AC 184 ms
41,416 KB
testcase_48 AC 177 ms
41,612 KB
testcase_49 AC 173 ms
41,468 KB
testcase_50 AC 170 ms
41,648 KB
testcase_51 AC 170 ms
42,180 KB
testcase_52 AC 177 ms
41,772 KB
testcase_53 AC 190 ms
42,404 KB
testcase_54 AC 175 ms
41,704 KB
testcase_55 AC 172 ms
41,744 KB
testcase_56 AC 193 ms
41,768 KB
testcase_57 AC 181 ms
41,740 KB
testcase_58 AC 180 ms
41,724 KB
testcase_59 AC 176 ms
41,916 KB
testcase_60 AC 181 ms
41,840 KB
testcase_61 AC 142 ms
41,232 KB
testcase_62 AC 234 ms
45,824 KB
testcase_63 AC 206 ms
42,656 KB
testcase_64 AC 205 ms
42,996 KB
testcase_65 AC 242 ms
45,588 KB
testcase_66 AC 230 ms
45,292 KB
testcase_67 AC 224 ms
45,212 KB
testcase_68 AC 189 ms
42,788 KB
testcase_69 AC 190 ms
42,812 KB
testcase_70 AC 141 ms
41,376 KB
testcase_71 AC 134 ms
41,116 KB
testcase_72 AC 134 ms
41,188 KB
testcase_73 AC 135 ms
41,104 KB
testcase_74 AC 136 ms
41,052 KB
testcase_75 AC 139 ms
41,100 KB
testcase_76 AC 141 ms
41,420 KB
testcase_77 AC 123 ms
39,680 KB
testcase_78 AC 133 ms
41,180 KB
testcase_79 AC 146 ms
41,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int m = sc.nextInt();
		long[][] costs = new long[n][n];
		for (int i = 0; i < n; i++) {
		    Arrays.fill(costs[i], Long.MAX_VALUE / 10);
		    costs[i][i] = 0;
		}
		for (int i = 0; i < m; i++) {
		    int left = sc.nextInt() - 1;
		    int right = sc.nextInt() - 1;
		    long value = sc.nextLong();
		    costs[left][right] = Math.min(costs[left][right], value);
		}
		for (int i = 0; i < n; i++) {
		    for (int j = 0; j < n; j++) {
		        for (int k = 0; k < n; k++) {
		            costs[j][k] = Math.min(costs[j][k], costs[j][i] + costs[i][k]);
		        }
		    }
		}
		StringBuilder sb = new StringBuilder();
		for (int i = 0; i < n; i++) {
		    long ans = 0;
		    for (int j = 0; j < n; j++) {
		        if (costs[i][j] < Long.MAX_VALUE / 20) {
		            ans += costs[i][j];
		        }
		    }
		    sb.append(ans).append("\n");
		}
		System.out.print(sb);
	}
}
0