結果

問題 No.1037 exhausted
ユーザー ikdikd
提出日時 2020-05-02 14:48:17
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 1,491 bytes
コンパイル時間 15,883 ms
コンパイル使用メモリ 200,928 KB
実行使用メモリ 95,384 KB
最終ジャッジ日時 2024-06-09 12:56:56
合計ジャッジ時間 36,174 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 349 ms
35,420 KB
testcase_03 WA -
testcase_04 AC 353 ms
35,856 KB
testcase_05 WA -
testcase_06 AC 354 ms
35,976 KB
testcase_07 AC 352 ms
36,108 KB
testcase_08 WA -
testcase_09 AC 350 ms
35,852 KB
testcase_10 AC 353 ms
34,824 KB
testcase_11 AC 352 ms
36,092 KB
testcase_12 AC 1,262 ms
95,104 KB
testcase_13 AC 1,285 ms
95,308 KB
testcase_14 AC 1,266 ms
94,592 KB
testcase_15 AC 1,369 ms
94,848 KB
testcase_16 AC 1,250 ms
94,720 KB
testcase_17 AC 1,276 ms
95,172 KB
testcase_18 AC 1,384 ms
95,164 KB
testcase_19 AC 1,259 ms
94,848 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (387 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
/home/judge/data/code/Main.fs(22,18): warning FS0025: この式のパターン マッチが不完全です たとえば、値 '[|_; _; _; _|]' はパターンに含まれないケースを示す可能性があります。 [/home/judge/data/code/main.fsproj]
/home/judge/data/code/Main.fs(18,9): warning FS0025: この式のパターン マッチが不完全です たとえば、値 '[|_; _; _; _|]' はパターンに含まれないケースを示す可能性があります。 [/home/judge/data/code/main.fsproj]
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

// Learn more about F# at http://fsharp.org

open System

type S =
    { X: int
      V: int
      W: int64 }

let min a b =
    if a < b then a else b

let max a b =
    if a > b then a else b

[<EntryPoint>]
let main argv =
    let [| n; v; l |] = stdin.ReadLine().Split() |> Array.map int

    let mutable stands =
        [| for i in 1 .. n ->
            (let [| x; v; w |] = stdin.ReadLine().Split() |> Array.map int
             { X = x
               V = v
               W = w |> int64 }) |]
    if stands.[0].X > 0 then
        stands <-
            Array.append
                [| { X = 0
                     V = 0
                     W = 0 |> int64 } |] stands
    if stands.[stands.Length - 1].X < l then
        stands <-
            Array.append stands
                [| { X = l
                     V = 0
                     W = 0 |> int64 } |]
    let nn = stands.Length
    let inf = Int64.MaxValue / 2L
    let mutable dp = Array2D.create nn (v + 1) inf
    dp.[0, v] <- 0L
    for i = 1 to (nn - 1) do
        for j = 0 to v do
            let d = stands.[i].X - stands.[i - 1].X
            if j - d >= 0 then
                dp.[i, j - d] <- dp.[i - 1, j]
        for j = v downto 0 do
            let nj = min v (j + stands.[i].V)
            if nj > j then
                dp.[i, nj] <- min dp.[i, nj] (dp.[i, j] + stands.[i].W)
    // printfn "%A" dp
    // printfn "%A" stands
    printfn "%d" (dp.[nn - 1, *] |> Array.min)
    0 // return an integer exit code
0