forked from ygorshenin/icfp2016
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProblem.hs
44 lines (37 loc) · 996 Bytes
/
Problem.hs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
module Problem ( Silhouette
, Skeleton
, Problem (..)
, ProblemR (..)
, ProblemD (..)
, nextProblem
)
where
import Control.Monad
import Data.Ratio
import Geom
import Tokenizer
type Silhouette a = [Polygon a]
type Skeleton a = [Segment a]
data Problem a = Problem (Silhouette a) (Skeleton a)
deriving (Show)
type ProblemR = Problem Rational
type ProblemD = Problem Double
nextPoint :: Tokenizer PointR
nextPoint = do
x <- nextRational
Comma <- nextToken
y <- nextRational
return $ Point x y
nextPolygon :: Tokenizer PolygonR
nextPolygon = do
n <- nextInt
replicateM n nextPoint
nextSegment :: Tokenizer SegmentR
nextSegment = liftM2 (,) nextPoint nextPoint
nextProblem :: Tokenizer (Problem Rational)
nextProblem = do
n <- nextInt
silhouette <- replicateM n nextPolygon
m <- nextInt
skeleton <- replicateM m nextSegment
return $ Problem silhouette skeleton