ENG  RUSTimus Online Judge
Online Judge
Problems
Authors
Online contests
About Online Judge
Frequently asked questions
Site news
Webboard
Links
Problem set
Submit solution
Judge status
Guide
Register
Update your info
Authors ranklist
Current contest
Scheduled contests
Past contests
Rules
back to board

Discussion of Problem 1585. Penguins

Wrong tests
Posted by LostInSpace 29 Jul 2011 13:36
I think, test cases violates the condition.
for example in input stream presents empty strings, or strings with other world except pinguins types.
but in condition we can see that "In each of the next" and "which is one of the following: “Emperor Penguin,” “Little Penguin,” and “Macaroni Penguin.” "

in russian

Я думаю что проверочные тесты нарушают условия задачи
например присутствуют пустые строки или слова отличные от видов пингвинов.
Хотя в условии говорится что "В каждой из следующих n строк записано по одному виду пингвинов. Среди видов встречаются только «Emperor Penguin», «Little Penguin» и «Macaroni Penguin». "
Re: Wrong tests
Posted by daftcoder [Yaroslavl SU] 29 Jul 2011 15:30
This program says that the tests are correct.

#include <cstdio>
#include <string>
using namespace std;
string s, a[3] = {"Emperor Penguin", "Little Penguin", "Macaroni Penguin"};
char _s[100];
int n,c[3];

void getml()
{
   int *a = new int[100000];
   getml();
}

int main()
{
   scanf("%d", &n);
   gets(_s);
   if( _s[0] )
      getml();;
   while(n--)
   {
      gets(_s);
      s = _s;
      for(int i=0;i<4;++i)
      {
         if( i == 3 )
            getml();
         if( a[i] == s )
         {
            ++c[i];
            break;
         }
      }
   }
   int m = 0;
   if( c[m] < c[1] )
      m = 1;
   if( c[m] < c[2] )
      m = 2;
   printf("%s",a[m].c_str());
   return 0;
}