码迷,mamicode.com
首页 > 其他好文 > 详细

URAL 1889. Airport Announcements(数学啊 )

时间:2015-03-08 10:31:02      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:数学   ural   

题目链接:http://acm.timus.ru/problem.aspx?space=1&num=1889


1889. Airport Announcements

Time limit: 1.0 second
Memory limit: 64 MB
Igor was bored of waiting in an airport lounge. Oceanic Airlines, a company he didn‘t like so much, delayed the departure of his flight, so he was late for the connection flight to Petrozavodsk, where a programming camp was to be held. Now he had to wait for long 300 minutes at the airport. Soon he heard a public announcement. Maybe, his flight had been canceled or, maybe, there were discounts on burgers at a nearby bar—Igor couldn‘t tell for sure. It seemed that the announcement had been repeated in several languages, but, strangely, there hadn‘t been Russian among them.
Igor recognized the language of some of the phrases he had heard. He assumed that the number of phrases in the announcement had been the same regardless of the language and that the announcement had been made at most once in each language. Help Igor to find the number of languages in which the announcement was made.

Input

The first line contains the total number n of phrases Igor heard (2 ≤ n ≤ 1 000). In the ith of the following n lines you are given the language of the ith phrase or the word “unknown” if Igor couldn‘t recognize the language. It is guaranteed that Igor could recognize the language of at least one of the phrases. The name of a language is a string of a length from four to twenty symbols consisting of lowercase English letters.

Output

Output the number of languages in which the announcement was made. If there are several answers, list them in ascending order. If there is no solution, output the string “Igor is wrong.”

Samples

input output
6
english
unknown
unknown
unknown
german
unknown
2 3 6
4
english
french
unknown
english
Igor is wrong.
3
zulu
zulu
zulu
1


PS:

题意比较难懂,读了好久, 重复播报的时候是 报的112233这样的,不是123123这样!

代码如下:

#include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm>
using namespace std;
int n;
string s[1017];
int judge(int t)
{
    for(int i = 0; i < n; i+=t)
    {
        int tt = -1;
        for(int j = i; j < i+t; j++)
        {
            if(s[j] != "unknown")
            {
                tt = j;
                break;
            }
        }
        if(tt == -1)
            continue;
        for(int j = i; j < i+t; j++)
        {
            if(s[j] == "unknown")
                continue;
            if(s[tt] != s[j])
            {
                return 0;
            }
        }
        for(int j = i+t; j < n; j++)//只出现一次
        {
            if(s[tt] == s[j])
            {
                return 0;
            }
        }
    }
    return 1;
}
int main()
{
    int ans[1017];
    scanf("%d",&n);
    for(int i = 0; i < n; i++)
    {
        cin >> s[i];
    }
    int k = 0;
    for(int i = 1; i <= n; i++)
    {
        if(n%i==0)//整除才有可能
        {
            int flag = judge(i);//重复的次数
            if(flag)
            {
                ans[k++] = n/i;
            }
        }
    }
    sort(ans,ans+k);
    if(k == 0)
    {
        printf("Igor is wrong.\n");
        return 0;
    }
    printf("%d",ans[0]);
    for(int i = 1; i < k; i++)
    {
        printf(" %d",ans[i]);
    }
    printf("\n");
    return 0;
}



URAL 1889. Airport Announcements(数学啊 )

标签:数学   ural   

原文地址:http://blog.csdn.net/u012860063/article/details/44131205

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!