I have been banging my head against this problem for days, and searched exhaustively online for any hints on how to solve it. If you enjoy mathematically oriented programming problems, please take a look!
Here is the problem (PDF courtesy of UVA):
Consider a sequence of n integers < 1 2 3 4 ... n >. Since all the values are distinct, we know that there are n factorial permutations. A permutation is called K-transformed if the absolute difference between the original position and the new position of every element is at most K. Given n and K, you have to find out the total number of K-transformed permutations.
...
Input: The first line of input is an integer T (T < 20) that indicates the number of test cases. Each case consists of a line containing two integers n and K. (1 <= n <= 10^9) and (0 <= K <= 3).
Output: For each case, output the case number first followed by the required result. Since the result could be huge, output result modulo 73405.
The problem setter, Sohel Hafiz, categorized this problem as "Fast Matrix Exponentiation." Unfortunately, the google search I linked here doesn't appear to bring up any relevant links besides a Wikipedia page thick with mathematical jargon and notation (Wikipedia has proven to me to be a poor replacement for any math textbook).
Here's what I've done so far:
This code will compute by recursion the number of K-transformed permutations for low values of n and k, but is far too complex. It is good enough to build a table for searching for patterns:
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
int permute(int * a, int size, int i, int k)
{
int j;
int total = 0;
int x = size-i;
int low=0;
int high=size;
if (i == 0)
{
/* for (j=0;j<size;j++)
printf("%d, ", a[j]);
printf("\n");
*/ return 1;
}
if (x-k>0)
low = x-k;
if (x+k+1<size)
high = x+k+1;
for (j=low;j<high;j++)
{
int b[size];
memcpy(b,a,size*sizeof(int));
if (b[j] == 0)
{
b[j] = x+1;
total += permute(b,size,i-1,k);
}
}
return total;
}
int main()
{
int n, k, j, y, z;
int * arr;
/*scanf("%d %d", &n,&k);*/ k=2;
for (n=0;n<14;n++)
{
int empty[n];
for (j=0;j<n;j++)
empty[j] = 0;
arr = empty;
z = permute(arr, n, n, k);
y = magic(n,k);
printf("%d %d\n",z, y);
}
return 0;
}
The first thing I figured out was that k=1 is clearly the Fibonacci sequence. The magic function in main here is something I figured out later, almost by accident. It works ONLY for k=2, but it is exact up to n=14.
int magic(int n, int k)
{
if (n<0)
return 0;
if (n==0)
return 1;
if (n==1)
return 1;
return 2*magic(n-1,k) + 2*magic(n-3,k) - magic(n-5,k);
}
Very weird! I don't know the significance of this function, but it can be simplified to run in a loop in order to run just fast enough to finish K=2 for values up to 10^9.
All that's remaining is to find a non-recursive equation that can find any value for K=3 in a reasonable amount of time (under 10s).
EDIT: I am interested in the algorithm used to solve the problem for any given n and k within a reasonable amount of time. I do not expect anyone to actually confirm that their algorithm works by writing code to the specifications of the contest rules, what I'm looking for in an answer is a description of how to approach the problem and apply numerical methods to reach a solution.