結果

問題 No.390 最長の数列
ユーザー pekempeypekempey
提出日時 2016-07-29 14:44:16
言語 Haskell
(9.8.2)
結果
AC  
実行時間 588 ms / 5,000 ms
コード長 550 bytes
コンパイル時間 3,035 ms
コンパイル使用メモリ 176,896 KB
実行使用メモリ 93,020 KB
最終ジャッジ日時 2024-10-02 11:54:04
合計ジャッジ時間 9,798 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 164 ms
92,768 KB
testcase_01 AC 162 ms
93,020 KB
testcase_02 AC 165 ms
92,896 KB
testcase_03 AC 165 ms
92,764 KB
testcase_04 AC 165 ms
92,764 KB
testcase_05 AC 551 ms
69,264 KB
testcase_06 AC 459 ms
79,648 KB
testcase_07 AC 161 ms
92,892 KB
testcase_08 AC 162 ms
92,892 KB
testcase_09 AC 160 ms
92,772 KB
testcase_10 AC 563 ms
66,200 KB
testcase_11 AC 555 ms
66,192 KB
testcase_12 AC 575 ms
66,448 KB
testcase_13 AC 329 ms
82,968 KB
testcase_14 AC 588 ms
84,624 KB
testcase_15 AC 156 ms
92,892 KB
testcase_16 AC 156 ms
92,780 KB
testcase_17 AC 140 ms
63,028 KB
testcase_18 AC 152 ms
62,268 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 Control.Monad
import Data.Array.IO
import Data.List

n = 10 ^ 6

main = do
    _ <- readLn :: IO Int
    a <- sort . map read . words <$> getLine :: IO [Int]
    
    dp <- newArray (0, n) (-10^6) :: IO (IOUArray Int Int)

    forM_ a $ \i -> do
        writeArray dp i 1

    forM_ a $ \i -> do
        x <- readArray dp i
        forM_ [i * 2, i * 3 .. n] $ \j -> do
            y <- readArray dp j
            when (y > 0) $ writeArray dp j $ max (x + 1) y
   
    dp' <- getElems dp
    print $ maximum dp'
    
0