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 1301. Cube in Labyrinth

Problem in statement.
Posted by Fyodor Menshikov 9 Mar 2009 21:22
"Далее может следовать (а может и не следовать) информация о стенках."
"Then there amy be an informtaion about the walls."

Я знаю человека, который понял это как то, что каждый из следующих блоков (начинающихся v и h соответственно) может отсутствовать. Реально же в тестах буквы v и h всегда есть, просто в каждом из блоков может быть 0 пар. Поэтому я предлагаю формулировки этой фразы сделать такими:

"Далее следует информация о стенках."
"Then information about the walls follows."

И уже в каждом из блоков (про v и про h) оговориться, что пар может быть 0.
+1
Posted by OpenGL 9 Mar 2009 21:52
Я также подумал.
Re: +1
Ну, по-моему тут по-другому и не подумаешь - если может не следовать - то v и h может и не быть, что прямо следует из условия!
Re: Problem in statement.
Posted by Vladimir Yakovlev (USU) 10 Mar 2009 01:34
Problem statement is correct. Each block may follow or not. There are no tests with empty blocks, but we can add such test in the future. You may assume that correct tests may be as follows:

10 2
1 1
10 1
v
2 1

or

10 2
1 1
10 1
h
4 1

or

10 2
1 1
10 1
Re: Problem in statement.
Posted by Alex Tolstov 10 Mar 2009 15:52
О, оказывается я подумал правильно :))))))
Re: Problem in statement.
Posted by Fyodor Menshikov 10 Mar 2009 22:39
Vladimir Yakovlev (USU) wrote 10 March 2009 01:34
Problem statement is correct. Each block may follow or not. There are no tests with empty blocks, but we can add such test in the future.

Why to hung up this problem? I suggest either to add tests now or change statement to reflect tests. It is rather strange to wait some time and then add currently known test.