日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

【CodeForces - 334B】Eight Point Sets(水题模拟,有坑)

發布時間:2023/12/10 编程问答 34 豆豆
生活随笔 收集整理的這篇文章主要介紹了 【CodeForces - 334B】Eight Point Sets(水题模拟,有坑) 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

題干:

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,?x3and three more integers?y1,?y2,?y3, such that?x1?<?x2?<?x3,?y1?<?y2?<?y3?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?

Input

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.

Output

In a single line print word "respectable", if the given set of points corresponds to Gerald's decency rules, and "ugly" otherwise.

Examples

Input

0 0 0 1 0 2 1 0 1 2 2 0 2 1 2 2

Output

respectable

Input

0 0 1 0 2 0 3 0 4 0 5 0 6 0 7 0

Output

ugly

Input

1 1 1 2 1 3 2 1 2 2 2 3 3 1 3 2

Output

ugly

解題報告:

? 有坑就是不能只判斷行和列是否相同,還需要判斷行和列是否重合了,比如全輸入0 0。所以需要“//”的那兩行。

? 所以以后要注意這種坑啊!重合問題。還有考慮全0的這種特判。

AC代碼:

#include<bits/stdc++.h> #define ll long long using namespace std;struct Node {int x,y;int id; } n[9]; int ck[3] = {1,4,6}; int ck2[3] = {3,5,8}; bool cmp(Node a,Node b) {if(a.x != b.x) return a.x < b.x;else return a.y < b.y; } int main() {for(int i = 1; i<=8; i++) {scanf("%d%d",&n[i].x,&n[i].y);}sort(n+1,n+8+1,cmp);int flag = 1 ;for(int i = 1; i<3; i++) {if(n[i].x != n[i+1].x) flag=0;if(n[i].y == n[i+1].y) flag=0;//}if(n[4].x != n[5].x) flag=0;for(int i = 6; i<8; i++) {if(n[i].x != n[i+1].x) flag=0;}for(int k = 0; k<2; k++) {if(n[ck[k]].y != n[ck[k+1]].y) flag=0;if(n[ck[k]].x == n[ck[k+1]].x) flag=0;//}if(n[2].y != n[7].y) flag=0;for(int k = 0; k<2; k++) {if(n[ck2[k]].y != n[ck2[k+1]].y) flag=0;}if(flag == 1) puts("respectable");else puts("ugly");return 0 ; } //0 0 //0 1 //0 2 //1 0 //1 2 //1 0 //1 1 //1 2

?

總結

以上是生活随笔為你收集整理的【CodeForces - 334B】Eight Point Sets(水题模拟,有坑)的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。