CF807A.Is it rated?
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
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.
输入格式
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.
输出格式
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".
输入输出样例
输入#1
6 3060 3060 2194 2194 2876 2903 2624 2624 3007 2991 2884 2884
输出#1
rated
输入#2
4 1500 1500 1300 1300 1200 1200 1400 1400
输出#2
unrated
输入#3
5 3123 3123 2777 2777 2246 2246 2246 2246 1699 1699
输出#3
maybe
说明/提示
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.