dapingguo8's blog

By dapingguo8, 3 weeks ago, In English

We apologize for both the late editorial and the statement leaking issues. Unfortunately, as the problem authors, we never had any chances to prevent the leaking. Still, feel free to downvote if you have dissatisfaction due to these.

But what so ever, we hope you can enjoy the problems.

2216A - Course Wishes

Idea by Warriors_Cat

Solution
Code(C++)

2216B - THU Packing Puzzle

Idea by E.Space

Solution
Code(C++)

2215A - Interval Mod

Idea by Ecrade_

Solution
Code(C++)

2215B - RReeppeettiittiioonn

Idea by SpiritualKhorosho

Solution
Code(C++)

2215C - Oriented Journey

Idea by dapingguo8

Solution
Code(C++)

2215D - EXPloration, EXPloitation, and Gain Some EXPerience!

Idea by xiaoziyao

Solution
Code(C++)

2215E - Star Map

Idea by Kratrissa

Solution
Code(C++)

2215F - Research

Idea by E.Space

Solution
Code(C++)

2215G - Maze

Idea By crazy_sea

Solution
Code(C++)
  • Vote: I like it
  • +88
  • Vote: I do not like it

»
3 weeks ago, hide # |
 
Vote: I like it 0 Vote: I do not like it

Ragebaitforces

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

Thanks for the editorial. Pretty impressed by solution D, especially the last few lines were an eye-opener regarding the max distance to be considered and thus, the no. of masks.

During implementation, note that after making a move, the leading player might temporarily extend their lead to a distance of ⩾ 6. However, on the subsequent turn, they will either move back to reduce the gap, or the situation will naturally fall into the blocking case described above.

Great problemset indeed, unfortunate that it was an unrated contest. But it is something that the contest setters would find tough to control. Kudos!

»
3 weeks ago, hide # |
 
Vote: I like it 0 Vote: I do not like it

1.I solved problem 1B in $$$O(d(n)+n^{1/3})$$$ on the contest, ignoring the condition $$$\sum n\le10^{12}$$$.
2.I thought that 1D/2F maybe the players won't be very far, but didn't notice that when dis>=6 A will get all of the score.
3.The problems 1D and 1E are so ad-hoc!!