Spinning tops are one of the most popular and the most traditional toys. Not only spinning them, but also making one's own is a popular enjoyment.
One of the easiest way to make a top is to cut out a certain shape from a cardboard and pierce an axis stick through its center of mass. Professionally made tops usually have three dimensional shapes, but in this problem we consider only two dimensional ones.
Usually, tops have rotationally symmetric shapes, such as a circle, a rectangle (with 2-fold rotational symmetry) or a regular triangle (with 3-fold symmetry). Although such symmetries are useful in determining their centers of mass, they are not definitely required; an asymmetric top also spins quite well if its axis is properly pierced at the center of mass.
When a shape of a top is given as a path to cut it out from a cardboard of uniform thickness, your task is to find its center of mass to make it spin well. Also, you have to determine whether the center of mass is on the part of the cardboard cut out. If not, you cannot pierce the axis stick, of course.
Java Specific: Submitted Java programs may not use classes implementing the interface ``java.awt.Shape". You may use them for your debugging purposes.
The input consists of multiple datasets, each of which describes a counterclockwise path on a cardboard to cut out a top. A path is indicated by a sequence of command lines, each of which specifies a line segment or an arc.
In the description of commands below, the current position is the position to start the next cut, if any. After executing the cut specified by a command, the current position is moved to the end position of the cut made.
The commands given are one of those listed below. The command name starts from the first column of a line and the command and its arguments are separated by a space. All the command arguments are integers.
start | x y
|
Specifies the start position of a path. This command itself does not specify any cutting; | |
it only sets the current position to be (x, y)
| |
line | x y
|
Specifies a linear cut along a straight line from the current position to the position (x, y)
| |
which is not identical to the current position. | |
arc | x y r
|
Specifies a round cut along a circular arc. The arc starts from the current position and | |
ends at (x, y)
| |
When r
| |
cut; when it is positive, it is to the right side (Figure 7). The absolute value of r
| |
than the half distance of the two ends of the arc. Among two arcs connecting the start | |
and the end positions with the specified radius, the arc specified is one with its central | |
angle less than 180 degrees. | |
close | |
Closes a path by making a linear cut to the initial start position and terminates a dataset. | |
If the current position is already at the start position, this command simply indicates the | |
end of a dataset. |
The figure below gives an example of a command sequence and its corresponding path. Note that, in this case, the given radius - r
WIDTH="702" HEIGHT="396" ALIGN="BOTTOM" BORDER="0"
SRC="/ntujudge/problemdata/675-1.JPG"
ALT="\epsfbox{p4164a.eps}">
A dataset starts with a start command and ends with a close command.
The end of the input is specified by a line with a command end.
There are at most 100 commands in a dataset and at most 100 datasets are in the input. Absolute values of all the coordinates and radii are less than or equal to 100.
You may assume that the path does not cross nor touch itself. You may also assume that paths will never expand beyond edges of the cardboard, or, in other words, the cardboard is virtually infinitely large.
For each of the dataset, output a line containing x -
請輸出至小數點以下第二位,四捨五入
Hints:
An important nature of mass centers is that, when an object O
A circular segment with its radius r
- sin
)/2
/2)/(3A)
<!-- MATH
$\epsfbox{p4164c.eps}$
-->
WIDTH="409" HEIGHT="641" ALIGN="BOTTOM" BORDER="0"
SRC="/ntujudge/problemdata/675-6.JPG"
ALT="\epsfbox{p4164c.eps}">
start 0 0
arc 2 2 -2
line 2 5
arc 0 3 -2
close
start -1 1
line 2 1
line 2 2
line -2 2
arc -3 1 -1
line -3 -2
arc -2 -3 -1
line 2 -3
line 2 -2
line -1 -2
line -1 -1
arc -1 0 2
close
start 0 0
line 3 0
line 5 -1
arc 4 -2 -1
line 6 -2
line 6 1
line 7 3
arc 8 2 -1
line 8 4
line 5 4
line 3 5
arc 4 6 -1
line 2 6
line 2 3
line 1 1
arc 0 2 -1
close
end
1.00 2.50 +
-1.02 -0.50 -
4.00 2.00 +
Migrated from old NTUJ.
Aizu 2008
No. | Testdata Range | Score |
---|