結果
問題 | No.1344 Typical Shortest Path Sum |
ユーザー | kakel-san |
提出日時 | 2024-08-11 23:27:50 |
言語 | C# (.NET 8.0.203) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,265 bytes |
コンパイル時間 | 8,913 ms |
コンパイル使用メモリ | 163,440 KB |
実行使用メモリ | 192,724 KB |
最終ジャッジ日時 | 2024-08-11 23:28:06 |
合計ジャッジ時間 | 14,985 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 54 ms
30,592 KB |
testcase_01 | AC | 55 ms
30,848 KB |
testcase_02 | AC | 56 ms
30,720 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 56 ms
30,848 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 57 ms
30,848 KB |
testcase_09 | WA | - |
testcase_10 | AC | 56 ms
30,844 KB |
testcase_11 | AC | 53 ms
30,844 KB |
testcase_12 | AC | 54 ms
30,720 KB |
testcase_13 | AC | 54 ms
30,848 KB |
testcase_14 | WA | - |
testcase_15 | AC | 57 ms
30,844 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 60 ms
31,104 KB |
testcase_21 | WA | - |
testcase_22 | AC | 56 ms
31,104 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 60 ms
31,104 KB |
testcase_26 | WA | - |
testcase_27 | AC | 62 ms
30,976 KB |
testcase_28 | WA | - |
testcase_29 | AC | 60 ms
30,976 KB |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | AC | 56 ms
30,824 KB |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | AC | 55 ms
31,104 KB |
testcase_36 | AC | 56 ms
30,848 KB |
testcase_37 | WA | - |
testcase_38 | AC | 55 ms
30,848 KB |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | WA | - |
testcase_50 | WA | - |
testcase_51 | WA | - |
testcase_52 | WA | - |
testcase_53 | WA | - |
testcase_54 | WA | - |
testcase_55 | WA | - |
testcase_56 | WA | - |
testcase_57 | WA | - |
testcase_58 | WA | - |
testcase_59 | WA | - |
testcase_60 | AC | 56 ms
31,104 KB |
testcase_61 | AC | 56 ms
30,592 KB |
testcase_62 | AC | 59 ms
32,128 KB |
testcase_63 | AC | 58 ms
31,488 KB |
testcase_64 | AC | 58 ms
31,720 KB |
testcase_65 | AC | 60 ms
32,000 KB |
testcase_66 | AC | 62 ms
31,868 KB |
testcase_67 | AC | 62 ms
32,128 KB |
testcase_68 | AC | 56 ms
30,848 KB |
testcase_69 | AC | 58 ms
31,232 KB |
testcase_70 | WA | - |
testcase_71 | WA | - |
testcase_72 | AC | 56 ms
31,104 KB |
testcase_73 | AC | 59 ms
30,976 KB |
testcase_74 | WA | - |
testcase_75 | WA | - |
testcase_76 | WA | - |
testcase_77 | WA | - |
testcase_78 | WA | - |
testcase_79 | WA | - |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (87 ms)。 MSBuild のバージョン 17.9.6+a4ecab324 (.NET) main -> /home/judge/data/code/bin/Release/net8.0/main.dll main -> /home/judge/data/code/bin/Release/net8.0/publish/
ソースコード
using System; using static System.Console; using System.Linq; using System.Collections.Generic; class Program { static int NN => int.Parse(ReadLine()); static long[] NList => ReadLine().Split().Select(long.Parse).ToArray(); static long[][] NArr(long n) => Enumerable.Repeat(0, (int)n).Select(_ => NList).ToArray(); public static void Main() { Solve(); } static void Solve() { var c = NList; var (n, m) = ((int)c[0], (int)c[1]); var map = NArr(m); var INF = long.MaxValue / 2; var wf = new long[n][]; for (var i = 0; i < n; ++i) { wf[i] = Enumerable.Repeat(INF, n).ToArray(); wf[i][i] = 0; } foreach (var edge in map) { wf[edge[0] - 1][edge[1] - 1] = Math.Min(wf[edge[0] - 1][edge[1] - 1], edge[2]); } for (var k = 0; k < n; ++k) for (var i = 0; i < n; ++i) for (var j = 0; j < n; ++j) { wf[i][j] = Math.Min(wf[i][j], wf[i][k] + wf[k][j]); } var ans = new long[n]; for (var i = 0; i < n; ++i) for (var j = 0; j < n; ++j) if (wf[i][j] < INF) ans[i] += wf[i][j]; WriteLine(string.Join("\n", ans)); } }