CodeForces 719A. Vitya in the Countryside

Posted mch5201314

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CodeForces 719A. Vitya in the Countryside相关的知识,希望对你有一定的参考价值。

题意:

给你一个数列(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1),然后重复循环这个数列,输入一个n,再输入有n个元素的某段,问你接下来是UP还是DOWN,若无法判断输出-1。
思路:
枚举各种情况,注意n==1,a[n]==15是DOWN。

#include<bits/stdc++.h>
using namespace std;
#define ll long long
int main()
{
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);
    int n,i,a[100];
    cin>>n;

        for(i=1;i<=n;i++)
        cin>>a[i];
        
        if(n==1&&a[n]==0){
            cout<<"UP
";
        }
        else if(n==1&&a[n]==15){
            cout<<"DOWN
";
        }
        else if(n==1&&a[n]!=0)
        {
            cout<<-1<<endl;
        }
        else if(a[n-1]<a[n]&&a[n]!=15)
        {
            cout<<"UP
";
        }
        else if(a[n-1]<a[n]&&a[n]==15){
            cout<<"DOWN
";
        }
        else if(a[n-1]>a[n]&&a[n]!=0){
            cout<<"DOWN
";
        }
        else if(a[n-1]>a[n]&&a[n]==0){
            cout<<"UP
";
        }
    return 0;
}


以上是关于CodeForces 719A. Vitya in the Countryside的主要内容,如果未能解决你的问题,请参考以下文章

CodeForces 719A Vitya in the Countryside (水题)

CodeForces 719A Vitya in the Countryside 思维题

Codeforces 719B

codeforces 842D Vitya and Strange Lesson

Codeforces Round #719 (Div. 3) A - E 题解

Codeforces Round #719 (Div. 3) A-E