atcoder_official's blog

By atcoder_official, history, 7 months ago, In English

We will hold AtCoder Regular Contest 206 (Div. 2).

The point values will be 400-500-600-700-800.

We are looking forward to your participation!

  • Vote: I like it
  • -21
  • Vote: I do not like it

»
7 months ago, hide # |
 
Vote: I like it +4 Vote: I do not like it

Auto comment: topic has been updated by atcoder_official (previous revision, new revision, compare).

»
7 months ago, hide # |
 
Vote: I like it -9 Vote: I do not like it

Samples for D are too weak.

Why the sum of the min and second min of each edge can't get AC on E?

Is this solution bigger than the answer or smaller?

can anybody give me an hack?

»
7 months ago, hide # |
 
Vote: I like it 0 Vote: I do not like it

ngl, E scammed me hard

»
7 months ago, hide # |
 
Vote: I like it 0 Vote: I do not like it

Enjoyed the contest. Found it a bit on the easier side. Enjoyed D up until the part I had to brute force for k == 0 and k == 1.

»
7 months ago, hide # |
Rev. 2  
Vote: I like it +3 Vote: I do not like it

C was an amazing problem. It was awesome to see the $$$O(N^3)$$$ DP solution reduce to $$$O(N)$$$. The final implementation was very simple too, loved it.

»
7 months ago, hide # |
 
Vote: I like it 0 Vote: I do not like it

n=1 corner case

»
7 months ago, hide # |
 
Vote: I like it 0 Vote: I do not like it

In the editorial of E,

the cases where we cannot cover everything are limited to when $$$u2 + 1 \lt d1$$$ and $$$l2 + 1 \lt r1$$$, or when $$$d2 + 1 \lt u1$$$ and $$$r2 + 1 \lt l1$$$.

I believe it's when $$$u2 + 1 \lt d1$$$ and $$$r2 + 1 \lt l1$$$ or when $$$d2 + 1 \lt u1$$$ and $$$l2 + 1 \lt r1$$$. Can you fix it?

»
7 months ago, hide # |
 
Vote: I like it 0 Vote: I do not like it

How to write checker for D?