LoginSignup
0
0

More than 5 years have passed since last update.

ボールカウント:野球(2012.8.8の過去問)

Posted at

1日1個 @nabetani さんの作った問題を解く、どう書くAdventCalendarの2日目です。

今日の問題は http://qiita.com/Nabetani/items/ebd8a56b41711ba459f9 にあります。

module Doukaku.Baseball (solve) where

import Data.List (intercalate)

solve :: String -> String
solve input = intercalate "," . map showBoard . tail $ boards
  where
    boards :: [Board]
    boards = scanl ((normarize .) . play) (0, 0, 0) input

type Board = (Int, Int, Int)

play :: Board -> Char -> Board
play (o, s, b) 's' = (o, s + 1, b)
play (o, s, b) 'b' = (o, s, b + 1)
play (o, s, b) 'f' | s <= 1    = (o, s + 1, b)
                   | otherwise = (o, s, b)
play (o, _, _) 'h' = (o, 0, 0)
play (o, _, _) 'p' = (o + 1, 0, 0)

normarize :: Board -> Board
normarize (o, s, b) | s >= 3 = normarize (o + 1, 0, b)
                    | b >= 4 = normarize (o, 0, 0)
                    | o >= 3 = normarize (0, 0, 0)
                    | otherwise = (o, s, b)

showBoard :: Board -> String
showBoard (o, s, b) = show o ++ show s ++ show b

入力される各文字をパターンマッチさせてplay関数としてルールを記述。4ボールや3アウトの処理は冗長にならないようにnormarize関数に分けてあります。(normarize .) . playと合成すれば目的の遷移関数が簡単に作れます。end morphismなのでMonoidにする手もあったのですが、すべての結果を回収しなきゃいけないのでやめました。

問題ページに他の方の回答もありますので、見ると参考になるでしょう。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0