博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Codeforces Round #373 (Div. 2) A. Vitya in the Countryside 水题
阅读量:6406 次
发布时间:2019-06-23

本文共 1955 字,大约阅读时间需要 6 分钟。

A. Vitya in the Countryside

题目连接:

Description

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

Sample Input

5

3 4 5 6 7

Sample Output

UP

Hint

题意

现在告诉你,有一堆数是0,1,2,3,4,5,6,。。。。。15,14,13.。。。1,0这样循环的。

给你其中的部分数字,问你下一个数是比前一个数大,还是比前一个数小。

题解:

水题,只有几种情况,讨论一下就好了。

代码

#include
using namespace std;const int maxn = 1005;int a[maxn];int main(){ int n;scanf("%d",&n); for(int i=1;i<=n;i++)scanf("%d",&a[i]); if(a[n]==0)return puts("UP"); if(a[n]==15)return puts("DOWN"); if(n==1)return puts("-1"); if(a[n-1]
a[n])return puts("DOWN");}

转载地址:http://eyxea.baihongyu.com/

你可能感兴趣的文章
内存管理之1:x86段式内存管理与保护模式
查看>>
20180925上课截图
查看>>
IO输入/输出流的简单总结
查看>>
JavaScript之DOM-9 HTML DOM(HTML DOM概述、常用HTML DOM对象、HTML表单)
查看>>
技术成长之路(一)
查看>>
中国北方国际五金城硬件选型
查看>>
Discuz X2 [Type] 查询语句安全威胁
查看>>
php.exe启动时提示缺少MVCR110.dall 64位 window系统 解决
查看>>
Hive索引
查看>>
判断是否为数字方法
查看>>
Oracle配置的一些经验
查看>>
[翻译] EF Core in Action 关于这本书
查看>>
js Uncaught TypeError: undefined is not a function
查看>>
数据库存储引擎
查看>>
登录注册界面的传值
查看>>
如何修改计算列列名
查看>>
[2019.2.13]BZOJ4318 OSU!
查看>>
版本号带两个小数点的,如何比较大小?( NSStringCompareOptions )
查看>>
HashMap与HashCode
查看>>
QCustomplot使用分享(三) 图
查看>>