結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー Eliza_0xEliza_0x
提出日時 2018-05-13 14:22:22
言語 Haskell
(9.8.2)
結果
MLE  
実行時間 -
コード長 509 bytes
コンパイル時間 6,005 ms
コンパイル使用メモリ 172,928 KB
実行使用メモリ 813,664 KB
最終ジャッジ日時 2024-06-28 09:59:59
合計ジャッジ時間 9,607 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
12,672 KB
testcase_01 AC 24 ms
21,376 KB
testcase_02 AC 71 ms
31,232 KB
testcase_03 AC 58 ms
30,716 KB
testcase_04 AC 13 ms
12,672 KB
testcase_05 AC 78 ms
31,104 KB
testcase_06 AC 32 ms
22,392 KB
testcase_07 MLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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.Bits
import Data.Array

main  = do
    n <- read <$> getLine :: IO Int
    ns <- listArray (1,n) . map read . words <$> getLine :: IO (Array Int Int)
    print $ dp ns

dp :: Array Int Int -> Int
dp ns = sum [if memo!(n,i) then 1 else 0|i<-[0..r]]
    where
    r = 16384
    (_,n) = bounds ns
    memo  = array ((0,0), (n, r)) $ [((y,x), f y x)|y<-[0..n], x<-[0..r]]
    f 0 0 = True
    f 0 _ = False
    f y x = memo!(y-1, x) || (if x `xor` ns!y < r then memo!(y-1, x `xor` (ns!y)) else False)
0