結果

問題 No.482 あなたの名は
ユーザー くれちーくれちー
提出日時 2017-02-25 09:33:13
言語 Haskell
(9.8.2)
結果
TLE  
実行時間 -
コード長 1,189 bytes
コンパイル時間 6,163 ms
コンパイル使用メモリ 226,304 KB
実行使用メモリ 170,112 KB
最終ジャッジ日時 2024-06-11 14:53:45
合計ジャッジ時間 10,669 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
10,624 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 10 ms
12,800 KB
testcase_08 AC 8 ms
10,112 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 7 ms
9,856 KB
testcase_11 AC 9 ms
11,776 KB
testcase_12 AC 9 ms
12,544 KB
testcase_13 AC 7 ms
9,984 KB
testcase_14 AC 5 ms
8,064 KB
testcase_15 TLE -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_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

ソースコード

diff #

import Prelude hiding (tail, length, map, splitAt, (++), (!!))
import Data.Vector

(!!) :: Vector a -> Int -> a
v !! x = v ! (pred x)

swap :: Vector a -> Int -> Int -> Vector a
swap xs a b = fst t1 ++ singleton (xs !! j) ++ fst t2 ++ singleton (xs !! i) ++ t3
    where
        i  = min a b
        j  = max a b
        t1 = splitAt (pred i) xs
        t2 = splitAt (pred $ j - i) (tail . snd $ t1)
        t3 = tail . snd $ t2

rep :: Integral a => Vector Int -> Vector Int -> Int -> a -> a
rep ds idxs i cnt
    | i > length ds = cnt
    | ds !! i == i  = rep ds idxs (succ i) cnt
    | otherwise     = rep (swap ds i (idxs !! i)) (swap idxs (ds !! i) (ds !! (idxs !! i))) (succ i) (succ cnt)

solve :: Integral a => Int -> a -> Vector Int -> Bool
solve n k ds
    | cnt <= k && even (k - cnt) = True
    | otherwise                  = False
    where
        Just idxs = fmap (fmap succ) . sequenceA $ (\x -> findIndex (== x)) <$> generate n succ <*> pure ds
        cnt       = rep ds idxs 1 0

main = do
    [n, k] <- fmap read . words <$> getLine
    ds     <- fromList . fmap read . words <$> getLine
    putStrLn $ case solve n k ds of
        True  -> "YES"
        False -> "NO"
0