By MikeMirzayanov, 13 years ago, translation, In English

School Team Contest #3 (Winter Computer School 2010/11) will be held on November 13 at 11:00 (UTC). This is the final team event of the series, and we will be glad to see both permanent participants and new teams.

The contest has been prepared by me, Artem Rakhov, Nikolay Kuznetsov and Ivan Fefer. All of us will soon go the ACM-ICPC regionals in St. Petersburg, and now the guys have to combine the preparations for the semifinals with writing problems for you. Special thanks for the translation of problems to Maria Belova.

Everyone can take part in it out of the competition (informal). Make up your mind :)

We decided to sum up contest results using the ITMO rating system, according to which team gets a score from 0 to 200 per contest. It will be used two best participations out of thee possible. I will not reveal secrets, saying that Gennady Korotkevich showed great results and secured the victory ahead of schedule!

Good luck in the upcoming competition, MikeMirzayanov and stern, but fair jury.

UPD. Statements in PDF: russian version and english version. The statements will be available when the contest starts. 

  • Vote: I like it
  • +13
  • Vote: I do not like it

| Write comment?
13 years ago, # |
  Vote: I like it 0 Vote: I do not like it
Will this be rated for everyone?
13 years ago, # |
  Vote: I like it -8 Vote: I do not like it
Good luck to all
13 years ago, # |
Rev. 2   Vote: I like it +6 Vote: I do not like it
I can't register. When I click on register I see this:

It's only 28 minutes till start
Please help!
13 years ago, # |
  Vote: I like it 0 Vote: I do not like it
Now that team contests have ended, Is there any other use for "TEAMS" ?
13 years ago, # |
  Vote: I like it 0 Vote: I do not like it
I can't understand this sentence "The one-colored houses should not stand consecutively" in < prime problem > 

Can anyone explain it? Thank you very much.
  • 13 years ago, # ^ |
      Vote: I like it +2 Vote: I do not like it
    Consecutively : 1 1 1 3 3 3 2 4 4 5 5 5 5
    not consecutively: 1 1 3 3 1 1 2 1 1 2 3 2 1
13 years ago, # |
  Vote: I like it 0 Vote: I do not like it
Can someone explain to me how to do Question B (School)?
13 years ago, # |
  Vote: I like it -11 Vote: I do not like it
What is test 10 in problem F? I have got wrong answer on test 10 several times...
  • 13 years ago, # ^ |
      Vote: I like it -8 Vote: I do not like it
    I suggest that test 10 is 2 2.

    This problem is really good problem. I tried several times and finally get accepted :)
    • 13 years ago, # ^ |
        Vote: I like it 0 Vote: I do not like it
      Apparently the answer to 2 2 is -1? But it is possible to bring everyone over in 5 moves!

      Let (G1,W1) (G2,W2) represent the goats and wolves on both sides of the river.

      (2,2) (0,0)
      (1,1) (1,1)   // 1
      (2,1) (0,1)   // 2
      (0,1) (2,1)   // 3
      (0,2) (2,0)   // 4
      (0,0) (2,2)   // 5

      Unless I misread the question somehow ...
      • 13 years ago, # ^ |
          Vote: I like it 0 Vote: I do not like it
        After the first move, the sheep on the left bank will be eaten.
        • 13 years ago, # ^ |
            Vote: I like it 0 Vote: I do not like it
          But I think the problem statement says

          "If in one place (on one of the banks or in the boat) the wolves happen to strictly outnumber the goats, then the wolves eat the goats and Vasya gets upset."

          After the first move, there is 1 goat and 1 wolf on the left bank. Why will the goat get eaten? :(
          • 13 years ago, # ^ |
              Vote: I like it 0 Vote: I do not like it
            Oh, I made a mistake. When m=2, the boat just can carry Vasya and an animal. (Am I right now?)
          • 13 years ago, # ^ |
              Vote: I like it 0 Vote: I do not like it
            Wrong again = =
            When n=2, the boat just can carry Vasya and an animal.
            • 13 years ago, # ^ |
              Rev. 2   Vote: I like it 0 Vote: I do not like it
              Ok, I think there is some ambiguity with this statement:

              "The boat can hold n animals and Vasya, in addition, he is permitted to put less than n animals in the boat."

              There seems to be a contradiction. Firstly it says that the boat can hold n animals. Then it is stated that it can only hold at most n-1 animals. I guess I interpretted it wrongly and thought that the boat can hold at most n animals.

              However, if that is the case, how can the input 3 2 return 11? You can only bring 1 animal over every time, and you need to bring at least 1 animal back. That means that the net movement of animals to the other bank is always 0.

              Also, something seems strange. I think I can say that if the input is (m n) and the answer is -1, then for all input (k n) where k > m, the answer should also be -1. However, the answer for 2 2 is -1 and the answer for 3 2 is 11. There seems to be something wrong.

              Did I misread the question somewhere?
              • 13 years ago, # ^ |
                  Vote: I like it 0 Vote: I do not like it
                When Vasya swims on the boat from one shore to the other, he must take at least one animal to accompany him. Maybe this tip is useful.
                It seems that I didn't understand the problem before. I saw tourist output -1 for 2 2 and then I output -1 for 2 2.
                Sorry for my mistake.
              • 13 years ago, # ^ |
                  Vote: I like it 0 Vote: I do not like it
                I still cannot find the mistake of the moves you gave for test 2 2.
13 years ago, # |
  Vote: I like it +5 Vote: I do not like it
I sent him a message here, but he did not reply :(
  • 13 years ago, # ^ |
      Vote: I like it 0 Vote: I do not like it
    I'm for your opinion...that the answer for m=n=2 should be 5.Maybe we all misunderstand something in the problem description?
    • 13 years ago, # ^ |
        Vote: I like it 0 Vote: I do not like it
      Does anyone know who set this problem? Thanks
      • 13 years ago, # ^ |
          Vote: I like it 0 Vote: I do not like it
        Seems that two of the problemsetters of this round are Fefer and RAD
        I don't see what's wrong with your solution either.
      • 13 years ago, # ^ |
          Vote: I like it 0 Vote: I do not like it
        It seems my solution didn't consider transporting m goats at once, now it outputs 5 for 2 2 and receives WA 10, so the 10th test case is probably wrong.
    • 13 years ago, # ^ |
        Vote: I like it 0 Vote: I do not like it
      Fixed and rejudged. Fortunately, compelete solutions from the official participants didn't appear. So the mistake didn't affect the rating. Attempts with the verdict OK have not been rejudged. Sorry for a long delay, but we have not noticed this thread comments. Thank you for care.
13 years ago, # |
  Vote: I like it 0 Vote: I do not like it
what is the means of problem H. Road Problem

for input 2:
4 4
1 2
2 3
2 4
3 4
why need to add a new edge 1 3
from road 1 2 go to other roads there is already 2 diffrent paths...