CF334B.Eight Point Sets
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Gerald is very particular to eight point sets. He thinks that any decent eight point set must consist of all pairwise intersections of three distinct integer vertical straight lines and three distinct integer horizontal straight lines, except for the average of these nine points. In other words, there must be three integers x1,x2,x3 and three more integers y1,y2,y3 , such that x_{1}<x_{2}<x_{3} , y_{1}<y_{2}<y_{3} and the eight point set consists of all points (xi,yj) ( 1<=i,j<=3 ), except for point (x2,y2) .
You have a set of eight points. Find out if Gerald can use this set?
输入格式
The input consists of eight lines, the i -th line contains two space-separated integers xi and yi ( 0<=xi,yi<=106 ). You do not have any other conditions for these points.
输出格式
In a single line print word "respectable", if the given set of points corresponds to Gerald's decency rules, and "ugly" otherwise.
输入输出样例
输入#1
0 0 0 1 0 2 1 0 1 2 2 0 2 1 2 2
输出#1
respectable
输入#2
0 0 1 0 2 0 3 0 4 0 5 0 6 0 7 0
输出#2
ugly
输入#3
1 1 1 2 1 3 2 1 2 2 2 3 3 1 3 2
输出#3
ugly