結果

問題 No.4 おもりと天秤
ユーザー myuonmyuon
提出日時 2015-03-09 09:32:48
言語 Haskell
(9.8.2)
結果
AC  
実行時間 468 ms / 5,000 ms
コード長 681 bytes
コンパイル時間 3,404 ms
コンパイル使用メモリ 224,640 KB
実行使用メモリ 17,280 KB
最終ジャッジ日時 2024-06-26 09:09:06
合計ジャッジ時間 6,253 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 4 ms
5,504 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 179 ms
15,124 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 176 ms
15,104 KB
testcase_08 AC 14 ms
9,856 KB
testcase_09 AC 468 ms
17,280 KB
testcase_10 AC 211 ms
15,436 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 462 ms
13,980 KB
testcase_19 AC 147 ms
13,912 KB
testcase_20 AC 135 ms
13,888 KB
testcase_21 AC 132 ms
13,864 KB
testcase_22 AC 131 ms
13,804 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 Control.Applicative
import Data.List
import Data.Array

solve ws = if solve' ws then "possible" else "impossible"

solve' ws = go ws arr where
  arr = listArray ((0,0),(length ws, sum ws `div` 2 + 1)) $ True : repeat False
  check m = (/= []) $ filter (\((_,w),v) -> 2 * w == sum ws && v == True) $ assocs m

  go [] m = check m
  go (x:xs) m
    | check m = True
    | otherwise = let m' = accum (||) m $ filter (\((k,w),_) -> 2 * w <= sum ws) $ fmap (\((k,w),v) -> ((k+1,w+x),v)) $ filter (\(_,v) -> v == True) $ assocs m in go xs m'

main = do
  _ <- getLine
  ws <- fmap (read :: String -> Int) . words <$> getLine
  putStrLn $ solve $ sortBy (\x y -> compare y x) $ ws
0