結果
問題 | No.17 2つの地点に泊まりたい |
ユーザー | tak |
提出日時 | 2018-04-10 00:59:10 |
言語 | F# (F# 4.0) |
結果 |
AC
|
実行時間 | 357 ms / 5,000 ms |
コード長 | 1,326 bytes |
コンパイル時間 | 15,689 ms |
コンパイル使用メモリ | 199,972 KB |
実行使用メモリ | 36,132 KB |
最終ジャッジ日時 | 2024-10-15 04:08:54 |
合計ジャッジ時間 | 26,442 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 346 ms
35,332 KB |
testcase_01 | AC | 345 ms
35,468 KB |
testcase_02 | AC | 348 ms
35,236 KB |
testcase_03 | AC | 349 ms
35,804 KB |
testcase_04 | AC | 347 ms
35,580 KB |
testcase_05 | AC | 348 ms
35,856 KB |
testcase_06 | AC | 348 ms
35,744 KB |
testcase_07 | AC | 349 ms
35,692 KB |
testcase_08 | AC | 348 ms
36,132 KB |
testcase_09 | AC | 350 ms
36,008 KB |
testcase_10 | AC | 349 ms
35,816 KB |
testcase_11 | AC | 349 ms
35,888 KB |
testcase_12 | AC | 346 ms
35,320 KB |
testcase_13 | AC | 345 ms
35,328 KB |
testcase_14 | AC | 346 ms
35,340 KB |
testcase_15 | AC | 347 ms
35,340 KB |
testcase_16 | AC | 348 ms
35,332 KB |
testcase_17 | AC | 347 ms
35,572 KB |
testcase_18 | AC | 350 ms
35,756 KB |
testcase_19 | AC | 350 ms
35,736 KB |
testcase_20 | AC | 348 ms
35,552 KB |
testcase_21 | AC | 348 ms
35,228 KB |
testcase_22 | AC | 350 ms
35,916 KB |
testcase_23 | AC | 350 ms
35,948 KB |
testcase_24 | AC | 357 ms
35,980 KB |
testcase_25 | AC | 345 ms
35,480 KB |
testcase_26 | AC | 352 ms
35,948 KB |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.fsproj を復元しました (320 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/
ソースコード
open System open System.Collections.Generic type WarshallFloyd(n,?isNonDir0:bool)= let isNonDir = defaultArg isNonDir0 true let inf = 1e16|>int64 let vertexNum = n let edgeNum = ref 0 let costs = Array2D.init<int64> (n+1) (n+1) (fun i j-> if i <> j then inf else 0L) member this.Inf = inf member this.AddPath f t c = incr edgeNum costs.[f,t]<-min costs.[f,t] c if isNonDir then costs.[t,f]<-min costs.[t,f] c member this.Run() = for i in 0..vertexNum do for j in 0..vertexNum do for k in 0..vertexNum do costs.[j,k]<-min costs.[j,k] (costs.[j,i]+costs.[i,k]) member this.PathExist f t = costs.[f,t] <> inf member this.MinCosts() = costs member this.MinCost f t = costs.[f,t] let read() = Console.ReadLine() let N = read() |> int let ws = WarshallFloyd(N) let S = Array.init N (fun _ -> read() |> int64) let M = read() |> int for i in 0..M-1 do let t = read().Split() ws.AddPath (t.[0] |> int) (t.[1] |> int) (t.[2] |> int64) ws.Run() [for i in [1..N-2] do for j in [1..N-2] do if i <> j then yield (i,j)] |> List.map (fun (a,b) -> (ws.MinCost 0 a) + S.[a] + (ws.MinCost a b) + S.[b] + (ws.MinCost b (N-1))) |> List.min |> printfn "%i"