goryinyich's blog

By goryinyich, 15 years ago, translation, In English
Hi there!

Me - Sergey Vedernikov - is the author of today's CF beta round.

During the round you'll assist far away kingdom citizens in solving everyday problems, and sometimes - just to fight for your survival.
This round is "red" =), therefore the problems should not appear too difficult, and you should get pleasure from solving them.
To those who know Russian language I recommend to read problem statements in Russian. Not because of the quality of translation - English just poorly communicates Russian folklore language style.

Finally I want to thank Artem Rakhov for invaluable help during the round preparation, Maria Belova for the qualitative translation of the problems, Mikhail Mirzayanov for excellent CF system and all participants for not leaving this event without your attention.

More AC verdicts and high rating to all of you! gl & hf

UPD: Unfortunately, problem B (div. 1) / D (div. 2) appeared to be more difficult, and author's solution appeared wrong. The round will be unrated. I apologise for this to all participants.
  • Vote: I like it
  • +42
  • Vote: I do not like it

| Write comment?
15 years ago, hide # |
 
Vote: I like it +6 Vote: I do not like it
What do you mean by "This round is red" ? 

Nice rating by the way ;)
15 years ago, hide # |
 
Vote: I like it 0 Vote: I do not like it
Problems sound easy... :D 
15 years ago, hide # |
 
Vote: I like it -11 Vote: I do not like it
GOOD LUCK!!!!!!!!!
15 years ago, hide # |
 
Vote: I like it 0 Vote: I do not like it
How is red round correlated to easy problem set? Isn't it the other way? Am I missing something here?
15 years ago, hide # |
Rev. 2  
Vote: I like it -12 Vote: I do not like it
good luck everyone :D
15 years ago, hide # |
 
Vote: I like it -12 Vote: I do not like it
thanks a lot. high ratings to all :)
15 years ago, hide # |
 
Vote: I like it 0 Vote: I do not like it
I am new to codeforces...I have'nt seen the contest interface..Can anyone guide me ..Also I am using Java..So some technical help would also be great...
15 years ago, hide # |
 
Vote: I like it +4 Vote: I do not like it
Good luck everybody.
Thanks to the problem setters for their contribution

15 years ago, hide # |
 
Vote: I like it 0 Vote: I do not like it
Any idea for problem C div II?
  • 15 years ago, hide # ^ |
     
    Vote: I like it +1 Vote: I do not like it
    My solution was to try every combination, ignoring the rotation constraint, and save them in a array. Then I took every combination in the array and make all the rotations from it and erase these rotations from the list, the answer was the number of solutions left in the array.
15 years ago, hide # |
Rev. 2  
Vote: I like it +1 Vote: I do not like it

Do anybody know pretest 6 of problem B (Div 1)?
15 years ago, hide # |
 
Vote: I like it +18 Vote: I do not like it
Now I know what a RED round means.
15 years ago, hide # |
Rev. 3  
Vote: I like it 0 Vote: I do not like it

This round probably has the most number of unsuccessful attempts (in DIV 1).
Looking forward to the tutorial :P.
15 years ago, hide # |
 
Vote: I like it 0 Vote: I do not like it
Nice problemset - I've solved only E and placed 22nd (hope it won;'t change after system tests).
15 years ago, hide # |
 
Vote: I like it +7 Vote: I do not like it
I think that problems were difficult because of the some (hard to understand) sentences...
15 years ago, hide # |
 
Vote: I like it 0 Vote: I do not like it
in A was there any pretest in which integer part ended with 9? i forgot to check out solutions in hacking phase.
i doubt there was not such case , so many solutions will fail.
15 years ago, hide # |
 
Vote: I like it 0 Vote: I do not like it
Div2 C: 
Can we use a brute force approach?
  • 15 years ago, hide # ^ |
     
    Vote: I like it +1 Vote: I do not like it
    Yes you can, try out all the permutations (which is at most 6!).

  • 15 years ago, hide # ^ |
     
    Vote: I like it +1 Vote: I do not like it
    yes, brute force works:
    there are 720 permutations of 6 colors, and 24 equivalent positions for a cube.
    It would therefore need 720*24 checks.  It's low.
    • 15 years ago, hide # ^ |
       
      Vote: I like it +1 Vote: I do not like it
      can you explain the 24 positions.
      How do i figure it out.
      Thanks for the help.
      • 15 years ago, hide # ^ |
         
        Vote: I like it +5 Vote: I do not like it
        bottom - 1 from 6.
        front - 1 from 4 which have the same bottom.
      • 15 years ago, hide # ^ |
         
        Vote: I like it +1 Vote: I do not like it
        1 identical transformation
        9 rotations around 3 lines connecting the opposite faces (by 90 degrees)
        6 rotations around 6 lines connecting the opposite edges (by 180 degrees)
        8 rotations around 4 lines connecting the opposite vertices (by 120 degrees)
      • 15 years ago, hide # ^ |
        Rev. 3  
        Vote: I like it +5 Vote: I do not like it


        It's a group isomorphic to S4.

        A rotation of the cube corresponds to a permutation of the four diagonals.

      • 15 years ago, hide # ^ |
         
        Vote: I like it 0 Vote: I do not like it
        Thanks guys for the help.
        it sounds a little too difficult for me.<I know very little of this isomorphism>
        I did 720 permutation but lost track how to do the rotations <24>.
        can anyone give me some links where I can get these 24 positions or how can i do it?

        Thanks for your help again.
  • 15 years ago, hide # ^ |
    Rev. 5  
    Vote: I like it 0 Vote: I do not like it

    24 step :
    0,0,0,1,0,0,0,1,0,0,0,1,2,0,0,0,1,0,0,0,1,0,0,0
    ---------------------------------------------------
    0:
             +---+
             | 5 |
         +---+---+---+---+
         | 3 | 0 | 1 | 2 | ----->
         +---+---+---+---+
             | 4 |
             +---+
             +---+
             | 1 |
         +---+---+---+---+
         | 5 | 0 | 4 | 2 | 
         +---+---+---+---+
             | 3 |
             +---+
    1:
             +---+
             | 5 |
         +---+---+---+---+
         | 3 | 0 | 1 | 2 | ----->
         +---+---+---+---+
             | 4 |
             +---+
             +---+
             | 5 |
         +---+---+---+---+
         | 0 | 1 | 2 | 3 | 
         +---+---+---+---+
             | 4 |
             +---+
    2:
             +---+
             | 5 |
         +---+---+---+---+
         | 3 | 0 | 1 | 2 | ----->
         +---+---+---+---+
             | 4 |
             +---+
             +---+
             | 1 |
         +---+---+---+---+
         | 4 | 2 | 5 | 0 | 
         +---+---+---+---+
             | 3 |
             +---+

15 years ago, hide # |
 
Vote: I like it +18 Vote: I do not like it
Nice problems - however, I don't think it was balanced.
Number of submissions that passed the pretest are {A:218, B:20, C:29, D:21 and E:27}. 
 - Big gap between A and others.
 - (B C D E) very close to each other.

For problem B, i think the example cases were too trivial.
15 years ago, hide # |
 
Vote: I like it +9 Vote: I do not like it
Annoying problem statements. My B (div2) is going to fail because I failed to grasp the peculiarity of the statement till I locked my solution and checked another coder's solution.

Problems overall were nice, though tough. 
15 years ago, hide # |
 
Vote: I like it +10 Vote: I do not like it
I suggest that this contest is unrated.
15 years ago, hide # |
 
Vote: I like it +6 Vote: I do not like it
Div-2 B
I was able to hack a solution just because the participant didn't put '.' after
Unrecoverable configuration


15 years ago, hide # |
 
Vote: I like it +10 Vote: I do not like it
That was a hard and unballanced round. Also, I missed the usual explanation of the sample cases in some problems in Div 1, mainly B and E...
15 years ago, hide # |
 
Vote: I like it 0 Vote: I do not like it
oh, no..........
15 years ago, hide # |
 
Vote: I like it +13 Vote: I do not like it
I really enjoyed the contest. Perhaps a good warm-up (if not overheat) before tomorrow's TCO.

I will be really really really looking forward to E's editorial.
15 years ago, hide # |
 
Vote: I like it +21 Vote: I do not like it
After 13 days waiting for this contest. to be unrated! :(
15 years ago, hide # |
 
Vote: I like it +18 Vote: I do not like it
Hmm.....unrated..It makes me sad ;(
By the way , I couldn't get pleasure from solving these because it seemed that problems are very difficult except for A!

I think that recent contests are becoming difficult than the contests of the past clearly.
15 years ago, hide # |
 
Vote: I like it +5 Vote: I do not like it
My contest performance was very bad.Cannot solve problem C. But who cares the contest is unrated so I m feeling lucky...................

15 years ago, hide # |
 
Vote: I like it +8 Vote: I do not like it
Why interval between contests have increased? We would love to have 2 contests in a week,at least 1.
15 years ago, hide # |
 
Vote: I like it +1 Vote: I do not like it
In B (Div1)/D (Div2), how to proof that a given strategy is an optimal one ?
15 years ago, hide # |
 
Vote: I like it +6 Vote: I do not like it
I don't know if I'm missing something, but if the author solution for the "B div1/D div2" was wrong. How did 21 coder manage to get it accepted ?!!
15 years ago, hide # |
 
Vote: I like it +7 Vote: I do not like it
This contest supposed to be rearranged as like as SRM504.5
15 years ago, hide # |
Rev. 3  
Vote: I like it -13 Vote: I do not like it

Can this contest be rerated with the ignorance of AC solutions in B (Div1)/D (Div2)?

I think it's better than unrated....
15 years ago, hide # |
 
Vote: I like it 0 Vote: I do not like it
I think it's better to rematch in few days.
15 years ago, hide # |
 
Vote: I like it 0 Vote: I do not like it
Any editorials coming soon??? or not? :(
15 years ago, hide # |
 
Vote: I like it 0 Vote: I do not like it
This was my first contest and goes of unrated....disappoiting:(
15 years ago, hide # |
 
Vote: I like it -16 Vote: I do not like it
Now I know the meaning of "red"
for me "red" means hard but unrated with pretty large stories.
15 years ago, hide # |
 
Vote: I like it +5 Vote: I do not like it
Round #79 and #80 is coming soon
15 years ago, hide # |
 
Vote: I like it 0 Vote: I do not like it
Many contests are coming soon. It feels nice :))
15 years ago, hide # |
 
Vote: I like it 0 Vote: I do not like it
Why isn't 98B in the PROBLEMSET rejudged? The problem has already been modified.