Блог пользователя darshankdarji

Автор darshankdarji, история, 6 лет назад, По-английски

plz help me find out why test case 9 don't work for my code

my solution is this http://codeforces.com/contest/939/submission/35414707

  • Проголосовать: нравится
  • -8
  • Проголосовать: не нравится

»
6 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Can you explain your logic clearly ?

I also failed on the test 9. But my error was different. The time wasn't wrapping around if it was negative.

P.S. — Another advice I'd like to give you is, don't submit 8-9 times in a contest unless you're sure it's correct. You would have gained 100+ rating points if you only submitted C once.

  • »
    »
    6 лет назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    thx ghoshsai5000...so my logic is that find max sum of (f-s) element of array and set first element of that group to 1 according local time and then set it according to first time zone ....

»
6 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

The question asked you to find the minimum value of the time you could assign to the first zone. You have not done that as it is possible to assign a value lower than the value you outputted to get the same number of people to participate.

  • »
    »
    6 лет назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    thx in one of my code i also consider that solutions but instead of tp=s-id[i]; i write tp=s-id[0]; thx any way

    • »
      »
      »
      6 лет назад, # ^ |
        Проголосовать: нравится 0 Проголосовать: не нравится

      If there are multiple possible answers (in terms of participating population), print the minimum one ... I think your code is not doing that.

      Whenever you find a segment of as much population size as the total population, check if the answer would be less if you chose this one rather than the other one.

»
6 лет назад, # |
  Проголосовать: нравится +1 Проголосовать: не нравится

Dear darshankdarji,

Please check the following fix for your code.

35446463

Best wishes