Does anyone have a simpler approach of solving this problem? Please share with me.
# | User | Rating |
---|---|---|
1 | jiangly | 3976 |
2 | tourist | 3815 |
3 | jqdai0815 | 3682 |
4 | ksun48 | 3614 |
5 | orzdevinwang | 3526 |
6 | ecnerwala | 3514 |
7 | Benq | 3482 |
8 | hos.lyric | 3382 |
9 | gamegame | 3374 |
10 | heuristica | 3357 |
# | User | Contrib. |
---|---|---|
1 | cry | 169 |
2 | -is-this-fft- | 162 |
3 | Um_nik | 161 |
3 | atcoder_official | 161 |
5 | djm03178 | 157 |
5 | Dominater069 | 157 |
7 | adamant | 154 |
8 | luogu_official | 152 |
9 | awoo | 151 |
10 | TheScrasse | 148 |
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://codeforces.net/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!.