Hi,
Since nobody has mentioned this SRM, I do that here:
Time.
I am not the author, just want to increase the number of participants.
Thanks!
# | User | Rating |
---|---|---|
1 | tourist | 4009 |
2 | jiangly | 3821 |
3 | Benq | 3736 |
4 | Radewoosh | 3631 |
5 | jqdai0815 | 3620 |
6 | orzdevinwang | 3529 |
7 | ecnerwala | 3446 |
8 | Um_nik | 3396 |
9 | ksun48 | 3388 |
10 | gamegame | 3386 |
# | User | Contrib. |
---|---|---|
1 | cry | 164 |
1 | maomao90 | 164 |
3 | Um_nik | 163 |
4 | atcoder_official | 161 |
5 | -is-this-fft- | 158 |
6 | awoo | 157 |
7 | adamant | 156 |
8 | TheScrasse | 154 |
8 | nor | 154 |
10 | Dominater069 | 153 |
Name |
---|
Can anyone tell me what can be done when the applet says "A connection to the server cannot be established" when I try to login? I tried autodetect, it doesn't work. It was working well a few weeks back.
download the applet again. usually works for me.
Tried that. Still doesn't work :|
Thank you so much for posting this! I always miss SRMs, and finally get to compete in one. GLHF everyone!
Does anyone have proved solution for 1000?
How to solve medium? (I have O(k3) with small constant which gets AC in 1.6s)
upi is an expected sum of heights of nodes in tree with i nodes.
dpi is an expected sum of length of paths in tree with i nodes.
by linearity of expectation.
Similary, because sum of length is sum of length in both subtrees and sum of length of paths going through root.
About Div1 Hard.
My solution was to look at only Pareto-optimal choices. First, we sort the friends by decreasing number of bits set. After that, we recursively pick or kick them in that order. The single important check which makes it run faster than like 2568 is as follows: if we kick a friend X, we also have to kick all further friends which have a subset of X's skills (otherwise, the choice wouldn't be Pareto-optimal).
In practice run, this takes <100ms on all the given tests. Can someone please either construct a test where this becomes slow, or prove a reasonable asymptotic bound for the number of Pareto-optimal choices?
What about all (C(8, 4)) masks with 4 bits? Then it will be like 708?
Challenge succeeded :) .
A pity you were not in my room.
I wanted to challenge you with this exact test..
However, I was so stupid that I did not know paste in TC is ctrl+v (while in macOS is it command + v). :P
On all vectors with 4 1-bits out of 8 it will be 708 / 8! ≈ 1010
how to solve div2b