結果

問題 No.4 おもりと天秤
ユーザー e7a894e7a894
提出日時 2018-05-18 23:46:57
言語 Haskell
(9.8.2)
結果
TLE  
実行時間 -
コード長 704 bytes
コンパイル時間 7,507 ms
コンパイル使用メモリ 160,228 KB
実行使用メモリ 16,984 KB
最終ジャッジ日時 2023-09-10 23:20:34
合計ジャッジ時間 14,678 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,996 KB
testcase_01 AC 3 ms
6,932 KB
testcase_02 AC 6 ms
11,068 KB
testcase_03 AC 2 ms
7,248 KB
testcase_04 AC 2 ms
7,268 KB
testcase_05 AC 3 ms
7,628 KB
testcase_06 AC 2 ms
7,044 KB
testcase_07 AC 3 ms
7,672 KB
testcase_08 AC 3 ms
7,328 KB
testcase_09 AC 3 ms
7,700 KB
testcase_10 AC 3 ms
8,052 KB
testcase_11 AC 2 ms
7,148 KB
testcase_12 AC 3 ms
6,984 KB
testcase_13 AC 3 ms
7,104 KB
testcase_14 AC 3 ms
7,056 KB
testcase_15 AC 2 ms
7,168 KB
testcase_16 AC 2 ms
7,080 KB
testcase_17 AC 3 ms
6,996 KB
testcase_18 TLE -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Loaded package environment from /home/judge/.ghc/x86_64-linux-9.6.1/environments/default
[1 of 2] Compiling Main             ( Main.hs, Main.o )
[2 of 2] Linking a.out

ソースコード

diff #

import Data.List

main = do
  n <- readLn :: IO Int
  ws <- (map read . words) <$> getLine
  let e = (sum ws) `div` 2
  let ws' = filter (<= e) ws
  putStrLn $ if (odd $ sum ws) || (sum ws' < e) then "impossible" else resolve e ws'
  
resolve e ws = resolve' (getPairs e 0 (reverse $ sort ws))
  where
    resolve' :: [(Int, [Int])] -> String
    resolve' [] = "impossible"
    resolve' pairs@((a,bs):ps)
      | a == e = "possible"
      | null bs = resolve' ps
      | otherwise = resolve' ((getPairs e a bs) ++ ps)

getPairs :: Int -> Int -> [Int] -> [(Int,[Int])]
getPairs e c (p:ps)
  | null ps = [(m, [])]
  | otherwise = (m, filter (<= (e - m)) ps):(getPairs e c (p:(tail ps)))
    where m = c + p
0