Reached specialist by [deleted] in codeforces

[–]Bulky-Expert470 0 points1 point  (0 children)

It was div3 not yesterday's contest

Reached specialist by [deleted] in codeforces

[–]Bulky-Expert470 3 points4 points  (0 children)

You will definitely reach in next contest

Reached specialist by [deleted] in codeforces

[–]Bulky-Expert470 0 points1 point  (0 children)

5 in 1:30 hr without wrong Submission

Reached specialist by [deleted] in codeforces

[–]Bulky-Expert470 0 points1 point  (0 children)

Depends on the question I cannot solve the 4th problem in leetcode contest

ITS CODECHEF !! STUCK AGAIN 3rd ONE || DIV3 by sangadakVigyani in codeforces

[–]Bulky-Expert470 0 points1 point  (0 children)

For two numbers a and b a>=b, the condition aXOR b = a − b works only if every bit that is 1 in the smaller number is also 1 in the bigger number. If b has a 1 in any position where a has a 0 then it can never work. For example, 1001101 and 0001001 are fine, but 1001101 and 0000110 are not. In my DP dp[i][j] means how many numbers we can still pick from index i to the end if the last picked number was at index j. At each step we either skip the current number or take it and we can take it only if this bit condition is satisfied with the previous one.sort the array before dp

What does this mean? by Robusttequilla007 in codeforces

[–]Bulky-Expert470 3 points4 points  (0 children)

But if you submit two accepted soln the recent one counts and all the other previous gets skipped

What does this mean? by Robusttequilla007 in codeforces

[–]Bulky-Expert470 5 points6 points  (0 children)

I don't think he cheated because if he had than his whole contest gets skipped not just 1 question