BSHUFFLE - Editorial

(N.B. I’m assuming that the original task (wrongly) assumed that the pattern continued indefinitely based on initial observations. The editorial seems to suggest that the pattern would continue, and the setter’s solution isn’t correct for n>17 either. If so, vijju123 links to a nice paper proving the initial task wrong.)

I have to say, I’m not too impressed how this problem made it into a competition without having any guarantees for correctness. From what I understand the original motivation was an appeal to pattern recognition that actually turned out to be wrong.

This whole thing actually highlights a very important takeaway: pattern recognition by itself is not a proof! For contrast TABGAME has a similar theme of pattern recognition, but in that case the pattern can be easily be shown to be general.

If the task would had been to print only the least likely configuration (which you have a proof for) that would have been perfectly fine, and actually quite a nice task.

6 Likes

Try these test cases -
1
17
and then
2
11
17

You will be able to figure out how your soln is test cases dependent which should not be the case.

Click to view

In your soln you have added 3,8 and later you are checking using them and no already found. But to find a winner for N will have to know all the situations of 1 to N-1. For example in this test case, you have missed 11 between 1 to 16. So you are getting different results for 17.

And do comment if you need more help. :slight_smile:

thx joffan for your answer

and yeah I also got till N = 8 and then recognized the pattern

however I was curious whether we can go till N = 17 or above

Thanks,I corrected it ,

But with this approach it is showing TLE (time limit exceeded).

https://ide.geeksforgeeks.org/NmdZX8dmYp

help me please .

I found the sequence to be 3,8,11,32,35,56,59,64,67,118,121,208,211,216,219,622,625…
here difference betwween two elements is 3 alternatively but difference between other elements is varying .
I am unable to figure it out ,please help me

I knew that you would get TLE. That is why I wrote comment again xD.
Your approach is correct. Now you will have to optimize it.
Pre Req - Sieve1,
Sieve2,
Bitset

Click to view

Then refer this CF discussion.

Knuth Fisher-Yates Algorithm is worth mentioning.

How can we say that the proof by setter is correct? It just proves that the number of permutations for the least likely is {2}^{N-1} but there is no proof that it would be the least number?

Hi! I used a different pattern but I’m not sure how to prove it’s correct or not. I got AC tho.

P1 - N,1,2,3,…,N-1
P2 - swap(all consecutive numbers in the first half) + swap(all consecutive numbers in the second half)
https://www.codechef.com/viewsolution/20172571

There are 2 possible permutations for odd n. And one possible permutation for even n.

The proof states that it proves “… is the least likely permutation and occurs 2^{M−1} times” however I think it only shows the later. Still you could do a similar induction proof to show that all permutations occur \ge 2^{M-1}.

For N up to 7 I found the answer by brute force of all possible combinations.

For higher numbers, I spotted the pattern and guessed that it would continue.

The way that submissions are marked, there is no requirement for a proof that the answer is correct, and no penalty for a wrong answer. So it is reasonable to make a guess and submit it. It may not be good programming, but it earns the points.

You can see my solution here at https://www.codechef.com/viewsolution/20130095

The maximum probability permutation in the Editorial is wrong. I didn’t get that even for 1 million tests.

You can just try go through all possible n^n possible sets of swaps and count the results (up to something like 8 or 9). I can guarantee it’s correct up to n=8, although it should be noted that for odd n there are two equally likely permutations.