您的位置:首页 > 其它

0526 CF#807A&G2n#F Is it rated

2017-06-03 00:17 141 查看
摘要:
给定数据,按特征判断数据状态
原题目链接:CodeForces
- 807A


Is it rated?
Here it is. The Ultimate Question of Competitive Programming, Codeforces, and Everything. And you are here to answer it.
Another Codeforces round has been conducted. No two participants have the same number of points. For each participant, from the top to the bottom of the standings, their rating before and after the round is known.
It's known that if at least one participant's rating has changed, then the round was rated for sure.
It's also known that if the round was rated and a participant with lower rating took a better place in the standings than a participant with higher rating, then at least one round participant's rating has changed.
In this problem, you should not make any other assumptions about the rating system.
Determine if the current round is rated, unrated, or it's impossible to determine whether it is rated of not.

Input

The first line contains a single integer n (2 ≤ n ≤ 1000) — the number of round participants.
Each of the next n lines contains two integers ai and bi (1 ≤ ai, bi ≤ 4126) —
the rating of the i-th participant before and after the round, respectively. The participants are listed in order from the top to the bottom of the standings.

Output

If the round is rated for sure, print "rated". If the round is unrated for sure, print "unrated". If it's impossible to determine whether
the round is rated or not, print "maybe".

Example

Input
6
3060 3060
2194 2194
2876 2903
2624 2624
3007 2991
2884 2884


Output
rated


Input
4
1500 1500
1300 1300
1200 1200
1400 1400


Output
unrated


Input
5
3123 3123
2777 2777
2246 2246
2246 2246
1699 1699


Output
maybe


Note

In the first example, the ratings of the participants in the third and fifth places have changed, therefore, the round was rated.
In the second example, no one's rating has changed, but the participant in the second place has lower rating than the participant in the fourth place. Therefore, if the round was rated, someone's rating would've
changed for sure.
In the third example, no one's rating has changed, and the participants took places in non-increasing order of their rating. Therefore, it's impossible to determine whether the round is rated or not.

来源: https://cn.vjudge.net/problem/description/80274?1496112873000

题目认识:
分情况看数据是否改变。
注意:

日期:
2017 05 26
代码:

#include <cstdio>

#include <algorithm>

#include <cmath>

#include <memory.h>

#include <iostream>

using namespace std;

#define MAX 1e9+7


int main(){

bool is_order=true,is_changed=false;


int n;scanf("%d",&n);

int a,b,la=-1;

while(n--){

scanf("%d%d",&a,&b);

if(la==-1) la=a;

if(a!=b) {is_changed=true;break;}

if(a>la) is_order=false;

la=a;

}

if(is_changed){

printf("rated");

}else{

if(is_order){printf("maybe");}

else printf("unrated");


}return 0;

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  A+B problem