CF1776I.Spinach Pizza
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
The two siblings Alberto and Beatrice have to eat a spinach pizza together. However, none of them likes spinach, so they both want to eat as little as possible.
The pizza has the shape of a strictly convex polygon with n vertices located at integer coordinates (x1,y1),(x2,y2),…,(xn,yn) of the plane.
The siblings have decided to eat the pizza in the following way: taking turns, starting with Alberto, each sibling chooses a vertex of the remaining part of the pizza and eats out the triangle determined by its two neighboring edges. In this way, after each of the first n−3 turns the pizza will have one less vertex. The game ends after the (n−2) -th turn, when all the pizza has been eaten.
Assuming that Alberto and Beatrice choose the slices to eat optimally, which of the siblings manages to eat at most half of the pizza? You should identify a sibling that has a strategy to do so and help them choose the slices appropriately. Note that it is possible that both Alberto and Beatrice end up eating exactly half of the area if they choose their slices optimally.
输入格式
The first line contains a single integer n ( 4≤n≤100 ) — the number of vertices.
The next n lines contain two integers xi and yi each ( −106≤xi,yi≤106 ) — the coordinates of the i -th vertex of the polygon representing the initial shape of the pizza.
It is guaranteed that the polygon is strictly convex and that its vertices are given in counterclockwise order.
输出格式
First, you should print a line containing either the string Alberto or the string Beatrice — the sibling that you will help to win.
Then, for the next n−2 turns, you will alternate with the judge in choosing a slice of the pizza and removing it, starting with you if you chose to help Alberto, or starting with the judge if you chose to help Beatrice.
- When it is your turn, print a single line containing an integer p ( 1≤p≤n ) that has not been chosen before, indicating that you want to eat the slice determined by the vertex located at (xp,yp) .
- When it is the judge's turn, read an integer q ( 1≤q≤n ), indicating that the other player eats the slice determined by the vertex located at (xq,yq) . It is guaranteed that q has not been chosen before.
If one of your interactions is malformed, the interactor terminates immediately and your program receives the verdict WRONG-ANSWER . Otherwise, you will receive CORRECT if at the end your player has eaten at most half of the pizza, and WRONG-ANSWER otherwise.
After printing a line do not forget to end the line and flush the output. Otherwise, you will get the verdict TIMELIMIT . To flush the output, use:
- fflush(stdout) in C;
- fflush(stdout) , cout << flush or cout.flush() in C++;
- System.out.flush() in Java and Kotlin;
- sys.stdout.flush() in Python.
输入输出样例
输入#1
4 0 0 6 1 5 3 1 4
输出#1
-
输入#2
6 0 0 2 0 3 2 2 4 0 4 -1 2
输出#2
-
输入#3
7 0 0 2 0 5 2 4 5 1 5 -1 4 -1 2
输出#3
-
说明/提示
In the first sample, the pizza has area 15 . Alberto can eat less than half of the pizza by eating the slice around vertex 2 (which has area 6.5 ) or around vertex 3 (which has area 3.5 ).
In the second sample, it can be proved that both players will eat exactly half of the pizza if they eat optimally. Therefore it is possible to choose to help either Alberto or Beatrice.
In the third sample, it is possible to show that only Beatrice has a strategy to eat at most half of the pizza. The following is an example of a valid interaction (after reading the input):
$$ \begin{array}{|c|c|c|} \hline \textbf{Contestant} & \textbf{Judge} & \textbf{Explanation} \\ \hline \texttt{Beatrice} & & \text{The contestant will help Beatrice} \\ \hline & \texttt{7} & \text{Alberto eats the triangle with vertices $6$, $7$, $1$ and area $1$} \\ \hline \texttt{2} & & \text{Beatrice eats the triangle with vertices $1$, $2$, $3$ and area $2$} \\ \hline & \texttt{5} & \text{Alberto eats the triangle with vertices $4$, $5$, $6$ and area $1.5$} \\ \hline \texttt{4} & & \text{Beatrice eats the triangle with vertices $3$, $4$, $6$ and area $8$} \\ \hline & \texttt{6} & \text{Alberto eats the triangle with vertices $3$, $6$, $1$ and area $11$} \\ \hline \end{array} $$ The total area eaten by Alberto is $13.5$ and the total area eaten by Beatrice is $10$$$, which is less than half the area of the whole pizza. The actions performed by the contestant and the judge in this example of interaction may be non-optimal. The process is illustrated below: 