Page 1 of 1

11297 - Census (BUG in problem description)

Posted: Sat Aug 16, 2008 10:23 am
by Leonid
Please change the problem description. Sample input does not correspond to input specification:

Code: Select all

In the first line you will find N (0 <= N <= 500), in following the N lines you will be given N numbers, which represent, the initial population of city C [i, j].
However, in the sample input there is one more number given besides N (probably the number of columns)

Code: Select all

5 5
1 2 3 4 5
0 9 2 1 3
0 2 3 4 1
0 1 2 4 5
8 5 3 1 4
4
q 1 1 2 3
c 2 3 10
q 1 1 5 5
q 1 2 2 2 

Re: 11297 - Census (BUG in problem description)

Posted: Tue Jan 04, 2011 12:58 pm
by tsumare
What jobs should I try to find after working with the Census? I working as an enumerator for the Census, what type of jobs should I apply for, once the Census job is over. I do not have much of a work history. Any suggestions? Thank you for your answers.

Re: 11297 - Census (BUG in problem description)

Posted: Wed Feb 16, 2011 10:49 am
by zobayer
actually they provide N N .. haha

Re: 11297 - Census (BUG in problem description)

Posted: Thu May 12, 2011 4:14 pm
by danielvulrich
zobayer wrote:actually they provide N N .. haha
agreed

Re: 11297 - Census (BUG in problem description)

Posted: Wed Jul 11, 2012 4:34 pm
by magurmach
I have to say, poor problem description. No description of numbers 'C [i, j]' , no description of how there is 2 number at the beginning of test cases. If they have used 0 indexing...(though I think they haven't!!!) Can these be made clear?

Re: 11297 - Census (BUG in problem description)

Posted: Wed Jul 11, 2012 8:44 pm
by magurmach
can somebody post some tough test cases? Getting WA

Re: 11297 - Census (BUG in problem description)

Posted: Sat Oct 13, 2012 6:48 am
by tyson
I was able to get AC for this problem just now, but sometimes submissions do get stuck in the queue or the whole thing goes down. Today I submitted code twice for one problem that was stuck in the queue, then waited an hour and the third submission got AC but the first two are still stuck in the queue.

Re: 11297 - Census (BUG in problem description)

Posted: Wed Dec 19, 2012 5:12 pm
by Davis222
Leonid wrote:Please change the problem description. Sample input does not correspond to input specification:

Code: Select all

In the first line you will find N (0 <= N <= 500), in following the N lines you will be given N numbers, which represent, the initial population of city C [i, j].
However, in the sample input there is one more number given besides N (probably the number of columns). So if you look at the following:
Here:

Code: Select all

5 5
1 2 3 4 5
0 9 2 1 3
0 2 3 4 1
0 1 2 4 5
8 5 3 1 4
4
q 1 1 2 3
c 2 3 10
q 1 1 5 5
q 1 2 2 2 
I have no information how to change the description of thi numeric data.

Re: 11297 - Census (BUG in problem description)

Posted: Sat Nov 08, 2014 2:38 pm
by kathipearl
Send to judge for 5 or so minutes

Re: 11297 - Census (BUG in problem description)

Posted: Tue Nov 11, 2014 8:48 pm
by brianfry713
Try it again.

Re: 11297 - Census (BUG in problem description)

Posted: Thu Nov 05, 2015 8:01 am
by uDebug
Leonid wrote:Please change the problem description. Sample input does not correspond to input specification:

Code: Select all

In the first line you will find N (0 <= N <= 500), in following the N lines you will be given N numbers, which represent, the initial population of city C [i, j].
However, in the sample input there is one more number given besides N (probably the number of columns)

Code: Select all

5 5
1 2 3 4 5
0 9 2 1 3
0 2 3 4 1
0 1 2 4 5
8 5 3 1 4
4
q 1 1 2 3
c 2 3 10
q 1 1 5 5
q 1 2 2 2 
The sample input has been changed to match the problem description now. There is no extra number anymore.