CF1835D.Doctor's Brown Hypothesis

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

The rebels have been crushed in the most recent battle with the imperial forces, but there is a ray of new hope.

Meanwhile, on one of the conquered planets, Luke was getting ready for an illegal street race (which should come as no surprise, given his family history). Luke arrived at the finish line with 88 miles per hour on his speedometer. After getting out of the car, he was greeted by a new reality. It turns out that the battle has not happened yet and will start in exactly kk hours.

The rebels have placed a single battleship on each of the nn planets. mm unidirectional wormholes connect the planets. Traversing each wormhole takes exactly one hour. Generals of the Imperium have planned the battle precisely, but their troops cannot dynamically adapt to changing circumstances. Because of this, it is enough for the rebels to move some ships around before the battle to confuse the enemy, secure victory and change the galaxy's fate.

Owing to numerous strategical considerations, which we now omit, the rebels would like to choose two ships that will switch places so that both of them will be on the move for the whole time (exactly kk hours). In other words, rebels look for two planets, xx and yy , such that paths of length kk exist from xx to yy and from yy to xx .

Because of the limited fuel supply, choosing one ship would also be acceptable. This ship should fly through the wormholes for kk hours and then return to its initial planet.

How many ways are there to choose the ships for completing the mission?

输入格式

In the first line of input, there are three integer numbers nn , mm , and kk ( 1n1051 \leq n \leq 10^5 , 0m21050 \leq m \leq 2 \cdot 10^5 , n3k1018n^3 \leq k \leq 10^{18} ) denoting respectively the number of planets, wormholes and hours left until the battle starts.

The following mm lines contain two integers each, xx and yy ( 1x,yn1 \leq x, y \leq n , xyx \ne y ), meaning that there is a wormhole from planet xx to planet yy . It is guaranteed that there are no two identical wormholes, i. e. for every two wormholes, either x1x2x_1 \neq x_2 or y1y2y_1 \neq y_2 .

输出格式

In the first and only line, your program should output the number of possible ways of choosing a pair or a single warship for the mission.

输入输出样例

  • 输入#1

    7 8 346
    1 2
    1 3
    2 4
    3 4
    4 5
    5 1
    6 7
    7 6

    输出#1

    5
  • 输入#2

    5 6 128
    1 2
    1 3
    2 4
    3 4
    4 5
    5 1

    输出#2

    6
  • 输入#3

    3 3 30
    1 2
    2 3
    3 2

    输出#3

    2

说明/提示

In the first sample test, one can choose pairs of ships from the following planets: 22 and 55 , 33 and 55 , 11 and 44 . Individual ships from planets 66 and 77 could also be chosen.

In the second sample test, one can choose a pair of ships from the following planets: 22 and 33 . Individual ships from planets 11 , 22 , 33 , 44 , and 55 could also be chosen.

In the third sample test, there are no pairs of ships we can choose. Individual ships from planets 22 and 33 could also be chosen.

首页