Здравствуйте, сегодня в 5:00 по московскому времени начался очередной SRM, предлагаю после окончания соревнования вести его обсуждение здесь.
# | User | Rating |
---|---|---|
1 | tourist | 4009 |
2 | jiangly | 3823 |
3 | Benq | 3738 |
4 | Radewoosh | 3633 |
5 | jqdai0815 | 3620 |
6 | orzdevinwang | 3529 |
7 | ecnerwala | 3446 |
8 | Um_nik | 3396 |
9 | ksun48 | 3390 |
10 | gamegame | 3386 |
# | User | Contrib. |
---|---|---|
1 | cry | 167 |
2 | Um_nik | 163 |
3 | maomao90 | 162 |
3 | atcoder_official | 162 |
5 | adamant | 159 |
6 | -is-this-fft- | 158 |
7 | awoo | 157 |
8 | TheScrasse | 154 |
9 | Dominater069 | 153 |
9 | nor | 153 |
Gentleman
|
13 years ago,
#
|
0
How to solve the problem 500 (Div 2) ?
→
Reply
|
1a1a1a
|
13 years ago,
#
^
|
←
Rev. 2
→
0
1 . pre calculate the amount of lucky numbers on segment [0,N]. (you can do this using dp approach). Code will look like this int cnt[4747+1] = {0}; for(int x = 1; x <= 4747; ++x) cnt[x] = cnt[x-1] + isLucky(x); 2. in order to obtain the amount of lucky numbers on arbitrary segment you can use cnt array. number of lucky numbers on segment[M,N] equals to cnt[N] - cnt[N-1]. 3. to solve problem just simulate the game int ans = 0; for(int aa = a; aa + jLen - 1 <= b; ++aa) { int brus = bLen; for(int bb = aa; bb + bLen - 1<= aa + jLen - 1; ++bb) { brus = min(brus, cnt[bb + bLen - 1] - cnt[bb-1] ); } ans = max(ans, brus); } return ans;
→
Reply
|
Name |
---|