Rating changes for last rounds are temporarily rolled back. They will be returned soon. ×

KEPuzOfficial's blog

By KEPuzOfficial, 5 months ago, translation, In English

I invite everyone to the contest, which will take place on May, 3 2026 at 14:35UTC. Interesting problems await you in the contest.

Contest info:

  • Number of problems: 9-10

  • Difficulty of problems: <= 2400

  • Duration: 2:30

  • Contest type: ACM10M

  • Languages: C++, Python, C, Kotlin, Haskell, R, Nodejs, PHP, C#, Java, Rust, Go

Prizes:

  • First place – 30$ (USDT)

  • Second place – 20$

  • Third place – 10$

Link to the platform: https://kep.uz

P.S. Registration on the platform only via Gmail/Github.

UPD

Thank you for participating. I hope you enjoyed the contest.

Results

  1. ywwuyi10 (424)
  2. JahonaliX9 (312)
  3. Timosh9 (389)
  4. DigitalVest9 (440)
  5. khba8 (312)

Editorial

A - Timosh's Speed
B. Rating Balance
C1 - khba and IOI-Style Scoring #1
C2 - khba and IOI-Style Scoring #2
D - Promos
E1 - Badge Layers #1
E2 - Badge Layers #2
F - Balls in a Box
G - Design Token Cascade
H - Carousel Exposure Queries
  • Vote: I like it
  • +40
  • Vote: I do not like it

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

Auto comment: topic has been translated by KEPuzOfficial (original revision, translated revision, compare)

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

There's an alternative solution for problem G, related to sqrt decomposition

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

There is also another solution for problem G, which only uses a segment tree.

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

There's a different solution for problem G, with the use of fenwick tree, Euler tour technique and binary jumping

»
5 months ago, hide # |
Rev. 2  
Vote: I like it 0 Vote: I do not like it

E1 test seems to be weak:

3 3
1 1 1
3 1 2

This should return 1 (since either you have a violation at index 1 (0-based) if $$$z_1 = 1, 2$$$, or at index 0 (if $$$z_1 = 3$$$). But my solution passed while returning 0 here.