結果

問題 No.4 おもりと天秤
ユーザー pocaristpocarist
提出日時 2015-09-01 18:57:57
言語 F#
(F# 4.0)
結果
AC  
実行時間 81 ms / 5,000 ms
コード長 681 bytes
コンパイル時間 14,917 ms
コンパイル使用メモリ 193,044 KB
実行使用メモリ 32,640 KB
最終ジャッジ日時 2024-06-26 09:18:01
合計ジャッジ時間 17,784 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
30,592 KB
testcase_01 AC 72 ms
30,336 KB
testcase_02 AC 73 ms
30,588 KB
testcase_03 AC 74 ms
30,464 KB
testcase_04 AC 73 ms
30,592 KB
testcase_05 AC 79 ms
32,000 KB
testcase_06 AC 73 ms
30,592 KB
testcase_07 AC 76 ms
31,728 KB
testcase_08 AC 76 ms
30,464 KB
testcase_09 AC 81 ms
32,640 KB
testcase_10 AC 76 ms
32,000 KB
testcase_11 AC 75 ms
30,720 KB
testcase_12 AC 74 ms
30,592 KB
testcase_13 AC 73 ms
30,848 KB
testcase_14 AC 72 ms
30,720 KB
testcase_15 AC 73 ms
30,464 KB
testcase_16 AC 73 ms
30,592 KB
testcase_17 AC 73 ms
30,464 KB
testcase_18 AC 76 ms
31,744 KB
testcase_19 AC 76 ms
31,744 KB
testcase_20 AC 77 ms
31,616 KB
testcase_21 AC 76 ms
31,740 KB
testcase_22 AC 76 ms
31,872 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (384 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/

ソースコード

diff #

(* http://yukicoder.me/problems/19 *)

open System

[<EntryPoint>]
let main argv = 
    let N = Console.ReadLine() |> int
    let W = Console.ReadLine().Split([|' '|]) |> Array.map int
    let total = Array.sum W
    let U = total / 2
    let solve () =
        if U * 2 <> total then false else
        let dp = Array2D.zeroCreate<int> (N+1) (U+1)
        for i = N-1 downto 0 do
            for u = 0 to U do
                if u < W.[i] then
                    dp.[i,u] <- dp.[i+1,u]
                else
                    dp.[i,u] <- max dp.[i+1,u] (dp.[i+1,u-W.[i]] + W.[i])
        dp.[0, U] = U
    if solve () then "possible" else "impossible"
    |> printfn "%s"
    0
0