Codeforces Round #373 (Div. 2) A. Vitya in the Countryside

16 篇文章 0 订阅
15 篇文章 0 订阅

A. Vitya in the Countryside
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Every summer Vitya comes to visit his grandmother in the countryside. This summer, he got a huge wart. Every grandma knows that one should treat warts when the moon goes down. Thus, Vitya has to catch the moment when the moon is down.

Moon cycle lasts 30 days. The size of the visible part of the moon (in Vitya's units) for each day is 0123456789101112,1314151413121110987654321, and then cycle repeats, thus after the second 1 again goes 0.

As there is no internet in the countryside, Vitya has been watching the moon for n consecutive days and for each of these days he wrote down the size of the visible part of the moon. Help him find out whether the moon will be up or down next day, or this cannot be determined by the data he has.

Input

The first line of the input contains a single integer n (1 ≤ n ≤ 92) — the number of consecutive days Vitya was watching the size of the visible part of the moon.

The second line contains n integers ai (0 ≤ ai ≤ 15) — Vitya's records.

It's guaranteed that the input data is consistent.

Output

If Vitya can be sure that the size of visible part of the moon on day n + 1 will be less than the size of the visible part on day n, then print "DOWN" at the only line of the output. If he might be sure that the size of the visible part will increase, then print "UP". If it's impossible to determine what exactly will happen with the moon, print -1.

Examples
input
5
3 4 5 6 7
output
UP
input
7
12 13 14 15 14 13 12
output
DOWN
input
1
8
output
-1
Note

In the first sample, the size of the moon on the next day will be equal to 8, thus the answer is "UP".

In the second sample, the size of the moon on the next day will be 11, thus the answer is "DOWN".

In the third sample, there is no way to determine whether the size of the moon on the next day will be 7 or 9, thus the answer is -1.


原题链接:http://codeforces.com/contest/719/problem/A

题意:给你一个0-15-1-0的周期序列。问你下一个数字将会是上升的还是下降的。

首先特殊情况,最后一个为0,一定上升,最后一个为15,一定下降,只有一个其他的数字,则无法判断,否则比较最后两个数字。

官方题解:

here are four cases that should be carefully considered:

  1. an = 15   —  the answer is always DOWN.

  2. an = 0   —  the answer is always UP.

  3. If n = 1   —  the answer is -1.

  4. If n > 1, then if an–1 > an   —  answer is DOWN, else UP.

Time Complexity: .


AC代码:

/**
  * 行有余力,则来刷题!
  * 博客链接:http://blog.csdn.net/hurmishine
  *
*/
/**
                   _ooOoo_
                  o8888888o
                  88" . "88
                  (| -_- |)
                  O\  =  /O
               ____/`---'\____
             .'  \\|     |//  `.
            /  \\|||  :  |||//  \
           /  _||||| -:- |||||-  \
           |   | \\\  -  /// |   |
           | \_|  ''\---/''  |   |
           \  .-\__  `-`  ___/-. /
         ___`. .'  /--.--\  `. . __
      ."" '<  `.___\_<|>_/___.'  >'"".
     | | :  `- \`.;`\ _ /`;.`/ - ` : | |
     \  \ `-.   \_ __\ /__ _/   .-` /  /
======`-.____`-.___\_____/___.-`____.-'======
                   `=---='
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
            pass System Test!
*/
#include <iostream>
#include <cstdio>
using namespace std;

int main()
{
    //freopen("data.txt","r",stdin);
    int a[100];
    int n;
    while(cin>>n)
    {
        for(int i=1; i<=n; i++)
            cin>>a[i];
        if(a[n]==0)
            cout<<"UP"<<endl;
        else if(a[n]==15)
            cout<<"DOWN"<<endl;
        else if(n==1)
            cout<<"-1"<<endl;
        else if(a[n]>a[n-1])
            cout<<"UP"<<endl;
        else
            cout<<"DOWN"<<endl;
    }
    return 0;
}

尊重原创,转载请注明出处: http://blog.csdn.net/hurmishine


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值