Page 1 of 1

11412 - Dig the Holes

Posted: Mon Nov 24, 2008 2:37 am
by Abednego
Could somebody who got this problem please explain the precise rules for computing n1 and n2? I used Mastermind rules, and I'm getting WA. Thanks.

Re: 11412 - Dig the Holes

Posted: Mon Nov 24, 2008 6:48 pm
by Vytenis
Well, I used Mastermind rules too, i.e. for each hidden coin I checked like this:

Code: Select all

if (hidden[0] == guess[0]) ++n1;
else if (hidden[0] == guess[1] || hidden[0] == guess[2] || hidden[0] == guess[3]) ++n2;
Maybe, you missed the fact that all four coins that you have to guess are of distinct colors?

Re: 11412 - Dig the Holes

Posted: Mon Nov 24, 2008 7:18 pm
by Abednego
Vytenis wrote:Maybe, you missed the fact that all four coins that you have to guess are of distinct colors?
Yep, that was it. Thanks.

Re: 11412 - Dig the Holes

Posted: Mon Sep 06, 2010 10:12 pm
by shantanu18
I am confused about input/output please help!
Input:

Code: Select all

3

YGOR 4 0
RGOB 4 0

RBVY 2 1
ORVY 4 0

GYBV 2 1
YORV 0 2

Output:

Code: Select all

cheat //but it is true for this sequence GROB
possible //but what is the sequence 
possible //what is the sequence for which it is possible