When submitting a solution in C++, please select either C++14 (GCC 6-32) or C++17 (GCC 7-32) as your compiler. ×

RAD's blog

By RAD, 13 years ago, translation, In English

Attention, participants from the Division 1! As a test feature, you can participate in Codeforces Beta Round #32 "out of competition".


Everybody knows, that the 2nd of October - birthday of Mohandas Gandhi. We dedicate today's round to him, and many other great people who were born on October 2 :)


Round was prepared by Mike Mirzayanov, Matov Dmitry and Max Ivanov.

Special thanks to Julia Satushina for translation of statements.

Good luck!


Artem Rakhov and Codeforces team

UPD:
  • Vote: I like it
  • +14
  • Vote: I do not like it

| Write comment?
13 years ago, # |
  Vote: I like it 0 Vote: I do not like it

Will all the following contests be codeforces format?

13 years ago, # |
  Vote: I like it +22 Vote: I do not like it

i sacrificed my class only for codeforces  contest :(

13 years ago, # |
  Vote: I like it 0 Vote: I do not like it

problem C's test 5 is?and the answer.thanks~

13 years ago, # |
  Vote: I like it 0 Vote: I do not like it
C
use the long but not int in Java, longlong but not int in C++

D
three FOR loop is a good solution
  • 13 years ago, # ^ |
      Vote: I like it 0 Vote: I do not like it
    C
    printf("I64d\n",ans);
    not printf("lld\n",ans);
13 years ago, # |
  Vote: I like it 0 Vote: I do not like it
What is test 10 for problem C?
13 years ago, # |
  Vote: I like it 0 Vote: I do not like it
what is the test case no-27 for problem D
  • 13 years ago, # ^ |
      Vote: I like it 0 Vote: I do not like it
    Field 27 × 27 with 700 random stars. You need to find constellation number 1107, and it exists.
13 years ago, # |
  Vote: I like it -8 Vote: I do not like it
what is test case 10 of  problem c ... plzz post the correct answer also 
  • 13 years ago, # ^ |
      Vote: I like it 0 Vote: I do not like it
    i think it's data type problem, if you are using int change to  long long because while i had the same problem i received WA at 10
13 years ago, # |
  Vote: I like it 0 Vote: I do not like it
Really enjoy the contest.
The first time for me to participate.
I missed several previous contests since they were in the midnight.
  • 13 years ago, # ^ |
      Vote: I like it 0 Vote: I do not like it
    I guess this one was specially prepared for the people of western countries.
    • 13 years ago, # ^ |
        Vote: I like it 0 Vote: I do not like it
      In China  ,it's 15:00  in holiday ! A wonderful  time.
13 years ago, # |
  Vote: I like it +1 Vote: I do not like it
System testing for out-of-competition participants completed. Sorry for delay.
13 years ago, # |
  Vote: I like it +4 Vote: I do not like it
Probably the shortest solution for Problem B could be solved using java -
code.replaceAll("--","2"). replaceAll("-\\.","1").replaceAll("\\.","0");
:)
13 years ago, # |
Rev. 2   Vote: I like it 0 Vote: I do not like it
Hello, i can't solve problem E, i can't figure it out how can i find the point(on the mirror) where those 2 see each other and then see if the "line of sight" intersects the wall(they SEE each other or they don't).
Please send me a private message with your solution or some hints. Thx:)
  • 13 years ago, # ^ |
    Rev. 2   Vote: I like it +12 Vote: I do not like it

    Let's reflect man's point A along the line M1 M2; denote this point as C (we can think of it as a "fake image" of point A).

    Then the segment BC intersects then M1 M2 segment exactly in the point necessary to you - it's the point where the ray from point A should reflect from the mirror to reach point B.

    So, in this problem you have to know how to reflect some point from a line, to check whether the point lies on a segment M1 M2, and then check that the ray haven't intersected the wall W1 W2.

  • 13 years ago, # ^ |
      Vote: I like it 0 Vote: I do not like it

    Let's reflect man's point A along the line M1 M2; denote this point as C (we can think of it as a "fake image" of point A).

    Then the segment BC intersects then M1 M2 segment exactly in the point necessary to you - it's the point where the ray from point A should reflect from the mirror to reach point B.

    So, in this problem you have to know how to reflect some point from a line, to check whether the point lies on a segment M1 M2, and then check that the ray haven't intersected the wall W1 W2.

13 years ago, # |
Rev. 2   Vote: I like it 0 Vote: I do not like it
Thx e-maxx!! I still have a question. If you have the kids at location (0,0) and (10,0) and the wall between (2,0) and (5,0) do they see each other? ( excepting the mirror)
  • 13 years ago, # ^ |
      Vote: I like it +1 Vote: I do not like it
    No, they can't see each other. But, as it is said in the description, if it were not a wall but a mirror ((2,0)-(5,0)), then answer would be YES (the mirror isn't an obstacle in this case).
13 years ago, # |
  Vote: I like it +2 Vote: I do not like it
 
What is test 17 for problem C?
  • 13 years ago, # ^ |
      Vote: I like it +1 Vote: I do not like it

    input: 999463 261665 981183

    answer: 9566472400

13 years ago, # |
  Vote: I like it +2 Vote: I do not like it
What's test 2 in problem C? And the answer?
13 years ago, # |
  Vote: I like it 0 Vote: I do not like it
What's the test #76 for problem E?, thanks
13 years ago, # |
  Vote: I like it 0 Vote: I do not like it
In some contest(http://codeforces.com/contest/1/problem/C) ...when I output nothing ,they return me "Presentation error" , do anyone konw why?
  • 13 years ago, # ^ |
      Vote: I like it 0 Vote: I do not like it
    Output
    Output the smallest possible area of the ancient arena. This number should be accurate to at least 6 digits after the decimal point.

    "Nothing" doesn't conform to this specification, hence PE.
13 years ago, # |
  Vote: I like it 0 Vote: I do not like it
Hi, can someone give me the test #5 for problem E? I can't pass it. Thx:)