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 1195. Ouths and Crosses

TUP#1 - We hate PIBAS Can anyone give us the test? [8] // Problem 1195. Ouths and Crosses 13 Apr 2002 15:07
If there is a 2 'X' and 1 # in row,column or diagonal, that Crosses
wins.
Else If there is 2 combinations of 2 'O' and 1 '#' in row,column or
diagonal, that Ouths win
Else Draw.

Where is a bug?

[code deleted]

Edited by moderator 11.03.2006 17:02
TheBlaNK Re: Can anyone give us the test? [7] // Problem 1195. Ouths and Crosses 16 Apr 2002 16:05
this solution has bug (try to find)
i know coz i try to submit this algo but wa...
i don't know what to do
so i use search algorithm 555
> If there is a 2 'X' and 1 # in row,column or diagonal, that Crosses
> wins.
> Else If there is 2 combinations of 2 'O' and 1 '#' in row,column or
> diagonal, that Ouths win
> Else Draw.
>
> Where is a bug?
>
[code deleted]

Edited by moderator 11.03.2006 17:02
Maigo Akisame (maigoakisame@yahoo.com.cn) Do you WA on test #11? I'm using exactly the same algo, but WA. [6] // Problem 1195. Ouths and Crosses 9 Jul 2004 20:08
[code deleted]

Edited by moderator 11.03.2006 17:02
Try this test:
#X#
XOO
#OX
Your output :Draw
Correct output : Crosses win
Good luck!
Maigo Akisame (maigoakisame@yahoo.com.cn) But WA on test #10 this time. [4] // Problem 1195. Ouths and Crosses 10 Jul 2004 04:38
Added these before writeln('Draw'):

t:=0;
map[i]:='X';map[j]:='X';if win('X') then inc(t);
map[i]:='#';map[k]:='X';if win('X') then inc(t);
map[j]:='#';map[i]:='X';if win('X') then inc(t);
if t>=2 then winX;

But WA on test #10 this time.
Saturn Re: But WA on test #10 this time. [3] // Problem 1195. Ouths and Crosses 10 Jul 2004 12:22
After added these code you got WA this test:
##X
XOO
#OX
Your output:Crosses win
Correct output:Draw

Edited by author 10.07.2004 12:24
Saturn Re: But WA on test #10 this time. [1] // Problem 1195. Ouths and Crosses 10 Jul 2004 13:03
Your added code is wrong.

Edited by author 10.07.2004 20:34
Maigo Akisame (maigoakisame@yahoo.com.cn) Thanks. AC now. // Problem 1195. Ouths and Crosses 10 Jul 2004 20:17
Помпей Re: But WA on test #10 this time. // Problem 1195. Ouths and Crosses 10 Mar 2006 18:38


Edited by author 10.03.2006 20:18