昨天5.15

来源:互联网 发布:javascript # 编辑:程序博客网 时间:2024/06/05 20:28
补昨天
A. Is it rated?
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

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".

Examples
input
63060 30602194 21942876 29032624 26243007 29912884 2884
output
rated
input
41500 15001300 13001200 12001400 1400
output
unrated
input
53123 31232777 27772246 22462246 22461699 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.

这题是判断 

1.如果 a=b 

输出 rate

2非递增

输出maybe

3

否则输出 

unrate

#include <iostream>


using namespace std;
struct node
{
    int a;
    int b;


}ans[1000];
int main()
{
  int n;
  cin>>n;




  int flag1=1;
  int flag2=1;
  for(int i=0;i<n;i++)
  {
      cin>>ans[i].a>>ans[i].b;


      if(ans[i].a>ans[i-1].a&&i>0)
      {
        flag1=0;


      }


      if(ans[i].a!=ans[i].b)
      {
         flag2=0;
      }






  }


  if(flag2==0)
    cout<<"rated"<<endl;
  else if(flag1==0)
    cout<<"unrated"<<endl;


  else
    cout<<"maybe"<<endl;
    return 0;
}

原创粉丝点击