Hide

Problem F
Fake Graph Theory

SoCCat the Combinatorician is a very combinatoricky cat. Currently, SoCCat is challenging you to solve a combinatorics problem!

SoCCat challenges you to solve the following combinatorics problem:

Given a graph G with 4n vertices, along with two permutations p and q, each with size 2n on the set {1,2,,2n}.

Add the following 4n edges:

  • For each i{1,2,3,,2n}, add an edge between vertices i and i+2n.

  • For each i{1,2,3,,n}, add an edge between vertices pi and pi+n.

  • For each i{1,2,3,,n}, add an edge between vertices qi+2n and qi+n+2n.

Suppose the permutations p and q are chosen uniformly at random among the (2n)! possible permutations. Note that the permutations p and q are independent of each other. What is the expected number of connected components in the resulting graph?

Suppose the expected number of connected components in the resulting graph is E. Then, let E=E×(2n)!×(2n)!. It can be proven that E is always an integer. You are required to output the value of Emod1000003233.

In other words, you should output the sum of the number of connected components in the resulting graph, over all (2n)!×(2n)! possible permutations p and q.

Input

The first line of input contains an integer n, as described in the problem statement (1n3233).

Output

Output a single integer, the value of Emod1000003233.

Notes

In the sample test case, there’s a 13 chance that there are 2 connected components, and 23 chance that there is 1 connected component.

Therefore, E=13×2+23×1=43, and the output should be 43×(4!)2=768.

Sample Input 1 Sample Output 1
2
768
Hide

Please log in to submit a solution to this problem

Log in