結果

問題 No.2803 Bocching Star
ユーザー ducktailducktail
提出日時 2024-07-13 22:25:49
言語 Haskell
(9.8.2)
結果
AC  
実行時間 1,041 ms / 2,000 ms
コード長 874 bytes
コンパイル時間 12,082 ms
コンパイル使用メモリ 180,908 KB
実行使用メモリ 58,960 KB
最終ジャッジ日時 2024-07-13 22:26:31
合計ジャッジ時間 26,969 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 49 ms
12,672 KB
testcase_04 AC 463 ms
48,624 KB
testcase_05 AC 184 ms
28,032 KB
testcase_06 AC 22 ms
10,624 KB
testcase_07 AC 146 ms
23,040 KB
testcase_08 AC 59 ms
15,104 KB
testcase_09 AC 1,041 ms
57,044 KB
testcase_10 AC 589 ms
56,844 KB
testcase_11 AC 624 ms
57,792 KB
testcase_12 AC 134 ms
22,016 KB
testcase_13 AC 404 ms
45,532 KB
testcase_14 AC 228 ms
34,176 KB
testcase_15 AC 672 ms
55,756 KB
testcase_16 AC 289 ms
30,080 KB
testcase_17 AC 60 ms
14,080 KB
testcase_18 AC 38 ms
12,672 KB
testcase_19 AC 413 ms
46,344 KB
testcase_20 AC 214 ms
29,056 KB
testcase_21 AC 163 ms
24,960 KB
testcase_22 AC 176 ms
22,912 KB
testcase_23 AC 574 ms
57,932 KB
testcase_24 AC 917 ms
57,936 KB
testcase_25 AC 769 ms
57,676 KB
testcase_26 AC 799 ms
57,932 KB
testcase_27 AC 637 ms
57,928 KB
testcase_28 AC 701 ms
57,808 KB
testcase_29 AC 636 ms
57,676 KB
testcase_30 AC 840 ms
57,932 KB
testcase_31 AC 603 ms
57,808 KB
testcase_32 AC 931 ms
58,960 KB
testcase_33 AC 6 ms
7,552 KB
testcase_34 AC 7 ms
8,064 KB
testcase_35 AC 5 ms
7,168 KB
testcase_36 AC 6 ms
7,552 KB
testcase_37 AC 6 ms
7,680 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 #

{-# LANGUAGE OverloadedStrings #-}
import Data.ByteString.Char8 (ByteString)
import qualified Data.ByteString.Char8 as B
import Data.List
import Data.Char (isSpace)

main :: IO ()
main = do
  [n, s] <- f
  solve n s <$> f >>= prt
  where
    f = readil B.readInt <$> B.getLine

solve :: Int -> Int -> [Int] -> [Int]
solve n s ps = f [] sps
  where
    sps = sort $ (10 ^ 18, n + 1)  : (-(10 ^ 18), 0) : (zip ps [1..])
    f :: [Int] -> [(Int, Int)] -> [Int]
    f hs ((p0, _) : (p1, i1) : (p2, i2) : ps)
      | p1 - p0 > s && p2 - p1 > s = f (i1 : hs) ((p1, i1) : (p2, i2) : ps)
      | otherwise = f hs ((p1, i1) : (p2, i2) : ps)
    f hs _ = sort hs
    
prt :: [Int] -> IO ()
prt l = do
  print $ length l
  putStrLn $ unwords $ map show l

readil :: Integral a =>  (ByteString -> Maybe (a, ByteString)) -> ByteString -> [a]
readil f = unfoldr $ f . B.dropWhile isSpace
0