#Lutece0419. Android key

Android key

Migrated from Lutece 419 Android key

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

Xixi has a smart phone with Symbian OS. She loves it for its convenience and massive software supplies. But recently, she could not help but notice that more and more people are using Android. Not only the staff at Google, but also her boyfriend and many other ACM team members are turning to Android users.

If you are already a user of Android, you must be familiar with its key lock system. The Android lock system uses a series of nine dots in a 3×33 \times 3 square that you need to replicate a pre-set pattern to unlock the phone.

Starting from one dot in the 3×33 \times 3 square, you can then move to the adjacent dot in four directions, up, down, left, and right. Sometimes you are on the edge or corner, your choices will be limited to 22 or 33 directions.

Another rule of setting the lock is that you cannot move to the dot that you have already visited. So 45214-5-2-1 is a valid lock, whereas 452144-5-2-1-4 is not.

Now xixi has found poemqiong’s new cell, and it is an Android phone. Knowing the length of peomqiong’s phone lock is KK, she wonders how many different lock patterns are there.

To make this problem a little more difficult, we assume that the keyboard is N×MN\times M square, instead of 3×33\times 3. An N×MN\times M square has NN columns and MM rows.

Now, given N(1N10N (1\leq N\leq 10), MM (1M101\leq M\leq 10) and the length of the lock pattern KK (0K100\leq K\leq 10), can you write a program to help xixi figure out how many patterns are there?

Input

NN, MM, KK

Output

The number of different patterns, noting that 454-5 and 545-4 are two different patterns.

Samples

2 2 3
3 3 2
8
24

Resources

5th BUPT Programming Contest Preliminary