Recently I started solving questions on online judges. I am stuck in this question in SPOJ:
Here is an algorithm for shuffling N cards:
- The cards are divided into K equal piles, where K is a factor of N.
- The bottom N / K cards belong to pile 1 in the same order (so the bottom card of the .initial pile is the bottom card of pile 1).
- The next N / K cards from the bottom belong to pile 2, and so on.
- Now the top card of the shuffled pile is the top card of pile 1. The next card is the top card of pile 2,..., the Kth card of the shuffled pile is the top card of pile K. Then (K + 1)th card is the card which is now at the top of pile 1, the (K + 2)nd is the card which is now at the top of pile 2 and so on.
For example, if N = 6 and K = 3, the order of a deck of cards "ABCDEF" (top to bottom) when shuffled once would change to "ECAFDB".
Given N and K, what is the least number of shuffles needed after which the pile is restored to its original order?
I tried simulating but it exceeds time limit. Is there any mathematical equation?