您的位置:首页 > 其它

Codeforces Beta Round #36 / 36A Extra-terrestrial Intelligence(模拟)

2013-08-16 13:56 411 查看
A. Extra-terrestrial Intelligence
http://codeforces.com/problemset/problem/36/A

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
8
00111000


output
YES


input
7
1001011


output
NO


input
7
1010100


output
YES


水。

完整代码:

/*30ms,100KB*/

#include<cstdio>

int main()
{
	int n, count = 0, interval = 0;
	bool is_intelligence = true;

	freopen("input.txt", "r", stdin);
    freopen("output.txt", "w", stdout);

	scanf("%d", &n);
	getchar();
	while (n--)
	{
		if (getchar() == '1')
			break;
	}
	while (n--)
	{
		if (getchar() == '0')
			interval++;
		else
			break;
	}
	while (n--)
	{
		if (getchar() == '0')
			count++;
		else
		{
			if (count == interval)
				count = 0;
			else
			{
				is_intelligence = false;
				break;
			}
		}
	}
	printf(is_intelligence ? "YES" : "NO");
	return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: