#![allow(unused_imports)] use std::cmp::*; use std::collections::*; use std::io::Write; use std::ops::Bound::*; #[allow(unused_macros)] macro_rules! debug { ($($e:expr),*) => { #[cfg(debug_assertions)] $({ let (e, mut err) = (stringify!($e), std::io::stderr()); writeln!(err, "{} = {:?}", e, $e).unwrap() })* }; } type mat = Vec>; fn mat_zeros(n: usize, m: usize) -> mat { vec![vec![0i64; m]; n] } fn matmul(a: &mat, b: &mat) -> mat { let mut c = mat_zeros(a.len(), b[0].len()); for i in 0..a.len() { for k in 0..b.len() { for j in 0..b[0].len() { c[i][j] += a[i][k] * b[k][j]; c[i][j] = min(1, c[i][j]); } } } c } fn matpow(a: &mat, n: u64) -> mat { let mut b = mat_zeros(a.len(), a.len()); for i in 0..a.len() { b[i][i] = 1; } let mut n = n; let mut a: mat = a.clone(); while n > 0 { if n & 1 == 1 { b = matmul(&a, &b); } a = matmul(&a, &a); n >>= 1; } b } fn main() { let v = read_vec::(); let (n, m, t) = (v[0] as usize, v[1] as usize, v[2]); let mut c = mat_zeros(n, n); for i in 0..m { let v = read_vec::(); let (a, b) = (v[0], v[1]); c[a][b] = 1; } let c = matpow(&c, t); let ans = c[0].iter().sum::(); println!("{}", ans); } fn read() -> T { let mut s = String::new(); std::io::stdin().read_line(&mut s).ok(); s.trim().parse().ok().unwrap() } fn read_vec() -> Vec { read::() .split_whitespace() .map(|e| e.parse().ok().unwrap()) .collect() }