CF156D.Clues

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

As Sherlock Holmes was investigating another crime, he found a certain number of clues. Also, he has already found direct links between some of those clues. The direct links between the clues are mutual. That is, the direct link between clues AA and BB and the direct link between clues BB and AA is the same thing. No more than one direct link can exist between two clues.

Of course Sherlock is able to find direct links between all clues. But it will take too much time and the criminals can use this extra time to hide. To solve the crime, Sherlock needs each clue to be linked to all other clues (maybe not directly, via some other clues). Clues AA and BB are considered linked either if there is a direct link between them or if there is a direct link between AA and some other clue CC which is linked to BB .

Sherlock Holmes counted the minimum number of additional direct links that he needs to find to solve the crime. As it turns out, it equals TT .

Please count the number of different ways to find exactly TT direct links between the clues so that the crime is solved in the end. Two ways to find direct links are considered different if there exist two clues which have a direct link in one way and do not have a direct link in the other way.

As the number of different ways can turn out rather big, print it modulo kk .

输入格式

The first line contains three space-separated integers n,m,kn,m,k ( 1<=n<=105,0<=m<=1051<=n<=10^{5},0<=m<=10^{5} , 1<=k<=1091<=k<=10^{9} ) — the number of clues, the number of direct clue links that Holmes has already found and the divisor for the modulo operation.

Each of next mm lines contains two integers aa and bb ( 1<=a,b<=n,ab1<=a,b<=n,a≠b ), that represent a direct link between clues. It is guaranteed that any two clues are linked by no more than one direct link. Note that the direct links between the clues are mutual.

输出格式

Print the single number — the answer to the problem modulo kk .

输入输出样例

  • 输入#1

    2 0 1000000000
    

    输出#1

    1
    
  • 输入#2

    3 0 100
    

    输出#2

    3
    
  • 输入#3

    4 1 1000000000
    1 4
    

    输出#3

    8
    

说明/提示

The first sample only has two clues and Sherlock hasn't found any direct link between them yet. The only way to solve the crime is to find the link.

The second sample has three clues and Sherlock hasn't found any direct links between them. He has to find two of three possible direct links between clues to solve the crime — there are 33 ways to do it.

The third sample has four clues and the detective has already found one direct link between the first and the fourth clue. There are 88 ways to find two remaining clues to solve the crime.

首页