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

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

Hello CodeForces Community!

NOTE This contest has prizes and job opportunities for Indian participants.

I am glad to share that CodeNation's CodeAgon is scheduled on 15th-August-2015 at 14:30 UTC

Go ahead and register now at https://www.hackerrank.com/codeagon to show off your coding chops.

Prizes worth 2 lakh rupees will be given and you'll get to connect with CodeNation for a career opportunity.

Contest will be unrated, scoring is 20 — 30 — 50 — 80 — 100. Tiebreaker is person to reach the score first.

Editorials will be live soon after the contest ends.

Good luck and have fun.

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

»
11 лет назад, скрыть # |
Rev. 3  
Проголосовать: нравится +3 Проголосовать: не нравится

I think the contest is rated :)

And why I must fill this form for participating? I don't know what the half of this things mean.

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

what is the duration of contest ?

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

Please recheck the tie breaking in the leader board part. I think that the leader board is not showing the first person to reach the score. People who reached the score later than me are going ahead of me.

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

Problem E was nice. It wasn't too difficult, rather it was one of those "feels good to solve" problem. There are at least 5 different methods to get accepted in time.

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

    what did you try?I tried seg tree + two pointers and solved the problem with multiplication not with big numbers and with complexity O(number of digits),but I only got 83 points. I think using big numbers with base very big would be practically better :-?

    • »
      »
      »
      11 лет назад, скрыть # ^ |
       
      Проголосовать: нравится 0 Проголосовать: не нравится
      1. Prime factorization followed by sliding window.
      2. Prime factorization followed by binary search.
      3. Sparse table followed by binary search with complexity O(N * log(N)^2 * log(K)). I believe it can pass with some optimizations.
      4. Method 3 can be reduced by a factor of log(N) using modified binary search.
      5. Sqrt(n) decomposition. Might require some optimizations to pass the time limit though.