結果

問題 No.609 Noelちゃんと星々
ユーザー okadukiokaduki
提出日時 2017-12-09 01:35:02
言語 Haskell
(9.8.2)
結果
AC  
実行時間 333 ms / 2,000 ms
コード長 679 bytes
コンパイル時間 10,464 ms
コンパイル使用メモリ 180,212 KB
実行使用メモリ 17,536 KB
最終ジャッジ日時 2024-11-29 22:16:25
合計ジャッジ時間 16,957 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 244 ms
12,160 KB
testcase_01 AC 129 ms
11,264 KB
testcase_02 AC 90 ms
10,624 KB
testcase_03 AC 117 ms
11,008 KB
testcase_04 AC 62 ms
9,472 KB
testcase_05 AC 320 ms
17,280 KB
testcase_06 AC 270 ms
12,544 KB
testcase_07 AC 156 ms
11,264 KB
testcase_08 AC 36 ms
8,832 KB
testcase_09 AC 100 ms
10,880 KB
testcase_10 AC 196 ms
11,904 KB
testcase_11 AC 184 ms
11,776 KB
testcase_12 AC 227 ms
11,904 KB
testcase_13 AC 46 ms
9,088 KB
testcase_14 AC 22 ms
8,320 KB
testcase_15 AC 274 ms
12,672 KB
testcase_16 AC 323 ms
17,536 KB
testcase_17 AC 251 ms
12,288 KB
testcase_18 AC 88 ms
10,496 KB
testcase_19 AC 267 ms
12,672 KB
testcase_20 AC 330 ms
13,696 KB
testcase_21 AC 332 ms
13,568 KB
testcase_22 AC 330 ms
13,568 KB
testcase_23 AC 333 ms
13,568 KB
testcase_24 AC 332 ms
13,568 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 FlexibleContexts, OverloadedStrings #-}
import Control.Applicative
import Control.Monad
import qualified Data.ByteString.Char8 as B
import Data.Maybe (fromJust)
import Text.Printf
import Debug.Trace

f ys y = foldl (\a b -> a + abs (y-b)) 0 ys

main = do
  _ <- getInts
  xs <- getInts
  print $ tri (f xs) (-1000000010) 1000000010

-- util
getInts :: IO [Integer]
getInts = map (fst . fromJust . B.readInteger) . B.words <$> B.getLine

tri f lb ub
  | ub-lb < 3 = minimum [f x | x <- [lb .. ub]]
  | otherwise = if y1 < y2 then tri f lb x2
                else tri f x1 ub
  where
    (x1,x2) = ((lb*2 + ub) `div` 3, (lb + ub*2) `div` 3)
    (y1,y2) = (f x1, f x2)
0