CF1569F.Palindromic Hamiltonian Path

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

You are given a simple undirected graph with nn vertices, nn is even. You are going to write a letter on each vertex. Each letter should be one of the first kk letters of the Latin alphabet.

A path in the graph is called Hamiltonian if it visits each vertex exactly once. A string is called palindromic if it reads the same from left to right and from right to left. A path in the graph is called palindromic if the letters on the vertices in it spell a palindromic string without changing the order.

A string of length nn is good if:

  • each letter is one of the first kk lowercase Latin letters;
  • if you write the ii -th letter of the string on the ii -th vertex of the graph, there will exist a palindromic Hamiltonian path in the graph.

Note that the path doesn't necesserily go through the vertices in order 1,2,,n1, 2, \dots, n .

Count the number of good strings.

输入格式

The first line contains three integers nn , mm and kk ( 2n122 \le n \le 12 ; nn is even; 0mn(n1)20 \le m \le \frac{n \cdot (n-1)}{2} ; 1k121 \le k \le 12 ) — the number of vertices in the graph, the number of edges in the graph and the number of first letters of the Latin alphabet that can be used.

Each of the next mm lines contains two integers vv and uu ( 1v,un1 \le v, u \le n ; vuv \neq u ) — the edges of the graph. The graph doesn't contain multiple edges and self-loops.

输出格式

Print a single integer — number of good strings.

输入输出样例

  • 输入#1

    4 3 3
    1 2
    2 3
    3 4

    输出#1

    9
  • 输入#2

    4 6 3
    1 2
    1 3
    1 4
    2 3
    2 4
    3 4

    输出#2

    21
  • 输入#3

    12 19 12
    1 3
    2 6
    3 6
    3 7
    4 8
    8 5
    8 7
    9 4
    5 9
    10 1
    10 4
    10 6
    9 10
    11 1
    5 11
    7 11
    12 2
    12 5
    12 11

    输出#3

    456165084
首页