zoukankan      html  css  js  c++  java
  • CF-807A

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

    题意:

    对于给出的数字对,若前后不相等,则为rated,若相等且按降序排列则为maybe,否则为unrated。

    附AC代码:

     1 #include<bits/stdc++.h>
     2 using namespace std;
     3 
     4 int a[1010],c[1010];
     5 
     6 int main(){
     7     int n,b,flag=0;
     8     cin>>n;
     9     for(int i=0;i<n;i++){
    10         cin>>a[i]>>b;
    11         if(a[i]!=b)
    12         flag=1;
    13         c[i]=a[i];
    14     }
    15     if(flag){
    16         cout<<"rated"<<endl;
    17         return 0;
    18     }
    19     flag=0;
    20     sort(c,c+n,greater<int>());//对C数组降序排列 
    21     for(int i=0;i<n;i++){
    22         //cout<<a[i]<<" "<<c[i]<<endl;
    23         if(a[i]!=c[i]){
    24             flag=1;
    25             break;
    26         }
    27     }
    28     if(flag){
    29         cout<<"unrated"<<endl;
    30         return 0;
    31     }
    32     cout<<"maybe"<<endl;
    33     return 0;
    34 } 
  • 相关阅读:
    HTML+CSS笔记 CSS进阶续集
    HTML+CSS笔记 CSS进阶
    HTML+CSS笔记 CSS入门续集
    HTML+CSS笔记 CSS入门
    test
    Python Paramiko模块安装和使用
    RedHat升级Python到2.7.6
    python数据库操作常用功能使用详解(创建表/插入数据/获取数据)
    5、使用EF对后台SysSample数据增删改查
    4、创建SQL数据库,添加EF实体数据模型
  • 原文地址:https://www.cnblogs.com/Kiven5197/p/6825348.html
Copyright © 2011-2022 走看看