Does anyone have a simpler approach of solving this problem? Please share with me.
# | User | Rating |
---|---|---|
1 | tourist | 3985 |
2 | jiangly | 3814 |
3 | jqdai0815 | 3682 |
4 | Benq | 3529 |
5 | orzdevinwang | 3526 |
6 | ksun48 | 3517 |
7 | Radewoosh | 3410 |
8 | hos.lyric | 3399 |
9 | ecnerwala | 3392 |
9 | Um_nik | 3392 |
# | User | Contrib. |
---|---|---|
1 | cry | 169 |
2 | maomao90 | 162 |
2 | Um_nik | 162 |
4 | atcoder_official | 161 |
5 | djm03178 | 158 |
6 | -is-this-fft- | 157 |
7 | adamant | 155 |
8 | awoo | 154 |
8 | Dominater069 | 154 |
10 | luogu_official | 150 |
Does anyone have a simpler approach of solving this problem? Please share with me.
Name |
---|
if u can understand python the refer to my solution https://mirror.codeforces.com/contest/1152/submission/53235674 starting from MSB following a greedy type appraoch
Can you explain your logic I have difficulty in reading python. Thanks!
first of all i converted the number into its binary and then checked if all bits are set if not then i start traversing from the most significant bit if a bit is set then continue else i calculated the length of all the bits starting from that '0' bit and then xored it with the number(all bits set with the lenght i calculated) AND then checked if the number becomes 2^n-1 (break if yes) else continue till the number becomes 2^n-1 (till we reach the last bit). take an example and u will understand refering to my code
Thanks! Understood
sorry for the down vote by mistake:)
No problem. I don't care about those a question is a question l.
I finally solved it using almost the same idea of yours. AC in 7 goes. my solution Thanks!.