k1r1t0's blog

By k1r1t0, history, 14 months ago, In English

Thanks you for participating in TheForces Round #4! Here is the editorial:

Problem A
Problem B
Problem C
Problem D
Problem E
Problem F
Problem G
  • Vote: I like it
  • +50
  • Vote: I do not like it

»
14 months ago, # |
  Vote: I like it +5 Vote: I do not like it

Please add the following test to this problem [problem:422264C — 10] as it will cause TLE to this solution [submission:189568443]

int n = 1e5, num = 1e9;
cout << n << "\n";
for (int i = 0; i < n; i++)
    cout << num-- << " ";
»
14 months ago, # |
  Vote: I like it 0 Vote: I do not like it

Interesting contest, quite educational and meaningful for beginners.

But D may be too easy for its place, it's a traditional maths problem which is far more easier than C.

  • »
    »
    14 months ago, # ^ |
      Vote: I like it 0 Vote: I do not like it

    Thanks for your opinion, Actually we know it's easy, But many people couldn't come up with the easy solution during the round (if you see standings) Also some of our testers couldn't come up during testing too, So we decided to put it at position D.

»
14 months ago, # |
  Vote: I like it +5 Vote: I do not like it

in editorial Code of Problem F gives TLE on test 2.