Curling has been an official sport in the Winter Olympic Games since the 1998 Winter Olympics in Nagano, Japan. In the run-up to this year's Winter Olympics it's about time we get to know this sport — which somewhat resembles bowls on ice — a little better.

curling logo
Logo of curling.
curling
Player delivering a stone during a curling competition.

Two four-player teams — team red and team yellow — take turns sliding heavy, polished granite stones across a curling sheet towards the house: a circular target area marked on the ice which is segmented into four concentric rings. Each team has eight stones. The purpose is to accumulate the highest score for a game. A game usually consists of eight to ten ends, which are completed when both teams have thrown all of their stones.

Points are scored for the stones resting closest to dolly (the center of the house) at the conclusion of each end. The team with the stone closest to the dolly wins that end. The winning team is then awarded one point for each of its stones lying closer to the dolly than the opponent's closest stone. Only stones that are in the house are considered in scoring. A stone is in the house if it overlaps — even if it's only a tiny fraction — with the circle formed by the outer edge of the outer ring of the house. Below you can see some example scores at the conclusion of an end.

curling scores
Some example scores at the conclusion of an end in a curling game.

The colors of the rings have no special meaning. They are only used to make it easier to estimate how the stones are in position to the dolly and to each other. After all, curling is a game of fractions and it may not be obvious to the eye which of two stones is closer to the dolly or if a stone is actually in the house or not. There are specialized devices to make these determinations, but these cannot be brought out until after an end is completed. Therefore, a team may make strategic decisions during an end based on assumptions of stone positions that turn out to be incorrect. In addition, the specialized measuring devices are so accurate that an end can never result in a tie, except if there are no stones in the house.

Assignment

Determine the score of the two teams, given the positions of the stones after an end in a game of curling has completed. The positions of the stones are represented as a sequence (a list or a tuple) containing descriptions of $$r + y$$ stones, where $$r$$ indicates the number of red stones ($$0 \leq r \leq 8$$) and $$y$$ the number of yellow stones ($$0 \leq y \leq 8$$).

Each stone is described as a tuples $$(x, y, t)$$, with $$(x, y)$$ the coordinates of the center of the stone in a coordinate system that has its origin in the dolly ($$x, y \in \mathbb{R}$$) and $$t$$ a string that indicates the color of the stone (R for red and Y for yellow).

distances and circle measures
Curling is all about circles.

Curling is all about circles: to determine the score you have to know if a circular stone is in the circular house and you must also determine the distance from the center of the circular stones to the dolly (the center of the circular house). We help you out in listing some measures used in curling and also remind you about some circle measures (see figure above as a reference):

Your task:

Example

>>> isinside(70.0, 0.0)
True
>>> isinside(70.0, 0.0, inch=False)
False
>>> isinside(78.0, 0.0)
False

>>> isvalid([(20.0, 10.0, 'R'), (25.0, 22.0, 'Y'), (42.0, 37.0, 'R')])
True
>>> isvalid([(20.0, 10.0, 'R'), (25.0, 22.0, 'R'), (42.0, 37.0, 'Y')])
True
>>> isvalid([(20.0, 10.0, 'R'), (25.0, 22.0, 'R'), (42.0, 37.0, 'R')])
True

>>> score([(20.0, 10.0, 'R'), (25.0, 22.0, 'Y'), (42.0, 37.0, 'R')])
(1, 0)
>>> score([(20.0, 10.0, 'R'), (25.0, 22.0, 'R'), (42.0, 37.0, 'Y')])
(2, 0)
>>> score([(20.0, 10.0, 'R'), (25.0, 22.0, 'R'), (42.0, 37.0, 'R')])
(3, 0)
>>> score([(0.508, 0.254, 'R'), (0.635, 0.5588, 'Y'), (1.0668, 0.9398, 'R')], False)
(1, 0)
>>> score([(0.508, 0.254, 'R'), (0.635, 0.5588, 'R'), (1.0668, 0.9398, 'Y')], inch=False)
(2, 0)
>>> score([(0.508, 0.254, 'R'), (0.635, 0.5588, 'R'), (1.0668, 0.9398, 'R')], False)
(3, 0)

All examples for the function score take a sequence of stones at the same positions (the first three example express them in inch, the last three examples in meter), but with different colors. Here's a graphical representation of the positions and colors of these stones, with coordinates expressed in inch.

example scores
Graphical representation of the stone positions and colors used in the interactive session, with coordinates expressed in inch.