博客
关于我
【读入】#36 A. Extra-terrestrial Intelligence
阅读量:201 次
发布时间:2019-02-28

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

A. Extra-terrestrial Intelligence
time limit per test
2 seconds
memory limit per test
64 megabytes
input
input.txt
output
output.txt

Recently Vasya got interested in finding extra-terrestrial intelligence. He made a simple extra-terrestrial signals’ receiver and was keeping a record of the signals for n days in a row. Each of those n days Vasya wrote a 1 in his notebook if he had received a signal that day and a 0 if he hadn’t. Vasya thinks that he has found extra-terrestrial intelligence if there is a system in the way the signals has been received, i.e. if all the intervals between successive signals are equal. Otherwise, Vasya thinks that the signals were sent by some stupid aliens no one cares about. Help Vasya to deduce from the information given by the receiver if he has found extra-terrestrial intelligence or not.

Input

The first line contains integer n (3 ≤ n ≤ 100) — amount of days during which Vasya checked if there were any signals. The second line contains n characters 1 or 0 — the record Vasya kept each of those n days. It’s guaranteed that the given record sequence contains at least three 1s.

Output

If Vasya has found extra-terrestrial intelligence, output YES, otherwise output NO.

Sample test(s)
input
800111000
output
YES
input
71001011
output
NO
input
71010100
output
YES
这道题……我太蠢了,真的太蠢了……我一直wa了7次,就因为我看到这个是数字然后用%d来读……全都读完了……

改成%c即AC……

这道题的意思是在10序列中看1的位置是否等距,所以使用flag记录第一个和第二个出现的1,获得步长pace,然后如果之后1不是按照pace的步长出现,即为NO,读完即为YES

#include 
#include
#include
#include
using namespace std;int main(){ int n,pace=0,p=0; int first=0,flag=0; freopen("input.txt","r",stdin); freopen("output.txt","w",stdout); cin>>n; char c; scanf("%c",&c); for(int i=1;i<=n;i++) { scanf("%c",&c); if(flag==0) { if(c=='1')flag=1; else; } else if(flag==1) { if(c=='1')flag=2; else pace++; } else { if(c=='1') { if(p!=pace) { puts("NO"); return 0; } else p=0; } else p++; } } puts("YES"); return 0;}

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

你可能感兴趣的文章
mysql 权限登录问题:ERROR 1045 (28000): Access denied for user ‘root‘@‘localhost‘ (using password: YES)
查看>>
MYSQL 查看最大连接数和修改最大连接数
查看>>
MySQL 查看有哪些表
查看>>
mysql 查看锁_阿里/美团/字节面试官必问的Mysql锁机制,你真的明白吗
查看>>
MySql 查询以逗号分隔的字符串的方法(正则)
查看>>
MySQL 查询优化:提速查询效率的13大秘籍(避免使用SELECT 、分页查询的优化、合理使用连接、子查询的优化)(上)
查看>>
mysql 查询数据库所有表的字段信息
查看>>
【Java基础】什么是面向对象?
查看>>
mysql 查询,正数降序排序,负数升序排序
查看>>
MySQL 树形结构 根据指定节点 获取其下属的所有子节点(包含路径上的枝干节点和叶子节点)...
查看>>
mysql 死锁 Deadlock found when trying to get lock; try restarting transaction
查看>>
mysql 死锁(先delete 后insert)日志分析
查看>>
MySQL 死锁了,怎么办?
查看>>
MySQL 深度分页性能急剧下降,该如何优化?
查看>>
MySQL 深度分页性能急剧下降,该如何优化?
查看>>
MySQL 添加列,修改列,删除列
查看>>
mysql 添加索引
查看>>
MySQL 添加索引,删除索引及其用法
查看>>
mysql 状态检查,备份,修复
查看>>
MySQL 用 limit 为什么会影响性能?
查看>>