結果

問題 No.4 おもりと天秤
ユーザー 34056915823405691582
提出日時 2017-03-21 09:11:29
言語 Haskell
(9.8.2)
結果
TLE  
実行時間 -
コード長 736 bytes
コンパイル時間 11,022 ms
コンパイル使用メモリ 173,440 KB
実行使用メモリ 30,924 KB
最終ジャッジ日時 2024-07-05 05:28:01
合計ジャッジ時間 12,707 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 29 ms
10,044 KB
testcase_03 AC 6 ms
9,088 KB
testcase_04 AC 13 ms
9,720 KB
testcase_05 TLE -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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.Maybe (fromJust)
main = do
  n <- read <$> getLine
  ws <- map read . words <$> getLine
  let
    sumOfWs = sum ws
    table = listArray ((1,1),(n,div sumOfWs 2)) $ repeat Nothing
  putStrLn $ if even sumOfWs && snd (partition table n (div sumOfWs 2) ws) then "possible" else "impossible"

partition table n m []
  | m == 0 = (table,True)
  | otherwise = (table,False)
partition table n m (w:ws)
  | m < 0 = (table,False)
  | m == 0 = (table,True)
  | otherwise = case table!(n,m) of
      Just b -> (table,b)
      Nothing -> (table2//[((n,m),Just result)],result)
      where
        (table1,r1) = partition table (n-1) m ws
        (table2,r2) = partition table1 (n-1) (m-w) ws
        result = r1 || r2
0