結果

問題 No.4 おもりと天秤
ユーザー Eliza_0xEliza_0x
提出日時 2018-05-13 12:52:30
言語 Haskell
(9.8.2)
結果
AC  
実行時間 186 ms / 5,000 ms
コード長 583 bytes
コンパイル時間 6,146 ms
コンパイル使用メモリ 172,416 KB
実行使用メモリ 90,768 KB
最終ジャッジ日時 2024-06-28 09:59:36
合計ジャッジ時間 8,459 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
7,040 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 22 ms
22,196 KB
testcase_03 AC 11 ms
12,800 KB
testcase_04 AC 22 ms
22,192 KB
testcase_05 AC 178 ms
90,528 KB
testcase_06 AC 3 ms
6,944 KB
testcase_07 AC 177 ms
90,648 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 169 ms
90,312 KB
testcase_10 AC 186 ms
90,660 KB
testcase_11 AC 11 ms
12,544 KB
testcase_12 AC 4 ms
6,944 KB
testcase_13 AC 4 ms
6,940 KB
testcase_14 AC 4 ms
7,680 KB
testcase_15 AC 4 ms
6,940 KB
testcase_16 AC 11 ms
12,800 KB
testcase_17 AC 10 ms
12,800 KB
testcase_18 AC 185 ms
90,520 KB
testcase_19 AC 181 ms
90,520 KB
testcase_20 AC 176 ms
90,524 KB
testcase_21 AC 176 ms
90,768 KB
testcase_22 AC 179 ms
90,520 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Loaded package environment from /home/judge/.ghc/x86_64-linux-9.8.2/environments/default
[1 of 2] Compiling Main             ( Main.hs, Main.o )
[2 of 2] Linking a.out

ソースコード

diff #

import Data.Array
import Data.List

main = do
    n <- read <$> getLine :: IO Int
    ms <- map read . words <$> getLine :: IO [Int]
    let ns = listArray (1,n) ms :: Array Int Int
    let s = sum ms
    putStrLn $ if mod s 2 == 0 && dp ns (div s 2) 
        then "possible" else "impossible"


dp :: Array Int Int -> Int -> Bool
dp ns half = memo!(n,half)
    where
    (_,n) = bounds ns
    memo = array ((0,0), (n,10000)) [((y,x), f y x)|y<-[0..n], x<-[0..10000]]
    f 0 0 = True
    f 0 x = False
    f y x = memo!(y-1,x) || (if x-(ns!y)>=0 then memo!(y-1,x-(ns!y)) else False)
0