結果
| 問題 |
No.45 回転寿司
|
| ユーザー |
|
| 提出日時 | 2020-10-16 01:50:37 |
| 言語 | Haskell (9.10.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,404 bytes |
| コンパイル時間 | 4,129 ms |
| コンパイル使用メモリ | 203,600 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-07-20 20:15:32 |
| 合計ジャッジ時間 | 5,201 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 WA * 1 |
| other | AC * 30 |
コンパイルメッセージ
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
ソースコード
{-# LANGUAGE BangPatterns #-}
import Control.Arrow
import qualified Data.ByteString.Char8 as BSC8
import qualified Data.Vector.Fusion.Stream.Monadic as VFSM
import qualified Data.Vector.Unboxed as VU
import qualified Data.Vector.Unboxed.Mutable as VUM
stream :: Monad m => Int -> Int -> VFSM.Stream m Int
stream !l !r = VFSM.Stream step l
where
step x
| x < r = return $ VFSM.Yield x (x + 1)
| otherwise = return $ VFSM.Done
{-# INLINE [0] step #-}
{-# INLINE [1] stream #-}
rep :: Monad m => Int -> (Int -> m ()) -> m ()
rep n = flip VFSM.mapM_ (stream 0 n)
{-# INLINE rep #-}
type Parser a = BSC8.ByteString -> Maybe (a, BSC8.ByteString)
parseInt :: Parser Int
parseInt = fmap (second BSC8.tail) . BSC8.readInt
parseM :: Int -> IO (VU.Vector Int)
parseM m = VU.unfoldrN m parseInt <$> BSC8.getLine
main :: IO ()
main = do
m <- readLn :: IO Int
vs <- parseM m
dp <- VUM.unsafeNew 1001
rep m $ \i -> do
if (i < 2)
then VUM.unsafeWrite dp i (vs VU.! i)
else if i == 2
then VUM.unsafeWrite dp i (vs VU.! 2 + vs VU.! 0)
else do
item1 <- VUM.unsafeRead dp (i - 2)
item2 <- VUM.unsafeRead dp (i - 3)
let item = max item1 item2
VUM.unsafeWrite dp i (item + vs VU.! i)
n1 <- VUM.unsafeRead dp (m - 1)
n2 <- VUM.unsafeRead dp (m - 2)
print $ max n1 n2