結果

問題 No.1340 おーじ君をさがせ
ユーザー shinchanshinchan
提出日時 2021-01-08 18:37:24
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 3,651 bytes
コンパイル時間 2,008 ms
コンパイル使用メモリ 209,984 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-05 03:08:24
合計ジャッジ時間 6,444 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 46 ms
5,376 KB
testcase_12 AC 9 ms
5,376 KB
testcase_13 AC 33 ms
5,376 KB
testcase_14 AC 91 ms
5,376 KB
testcase_15 AC 77 ms
5,376 KB
testcase_16 AC 6 ms
5,376 KB
testcase_17 AC 26 ms
5,376 KB
testcase_18 AC 44 ms
5,376 KB
testcase_19 AC 3 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 47 ms
5,376 KB
testcase_22 AC 126 ms
5,376 KB
testcase_23 AC 47 ms
5,376 KB
testcase_24 AC 240 ms
5,376 KB
testcase_25 AC 7 ms
5,376 KB
testcase_26 AC 5 ms
5,376 KB
testcase_27 AC 4 ms
5,376 KB
testcase_28 AC 9 ms
5,376 KB
testcase_29 AC 3 ms
5,376 KB
testcase_30 AC 49 ms
5,376 KB
testcase_31 AC 237 ms
5,376 KB
testcase_32 AC 221 ms
5,376 KB
testcase_33 AC 220 ms
5,376 KB
testcase_34 AC 199 ms
5,376 KB
testcase_35 AC 238 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 3 ms
5,376 KB
testcase_38 AC 235 ms
5,376 KB
testcase_39 AC 63 ms
5,376 KB
testcase_40 AC 64 ms
5,376 KB
testcase_41 AC 64 ms
5,376 KB
testcase_42 AC 1 ms
5,376 KB
testcase_43 AC 1 ms
5,376 KB
testcase_44 AC 2 ms
5,376 KB
testcase_45 AC 2 ms
5,376 KB
testcase_46 AC 48 ms
5,376 KB
testcase_47 AC 49 ms
5,376 KB
testcase_48 AC 55 ms
5,376 KB
testcase_49 AC 54 ms
5,376 KB
testcase_50 AC 54 ms
5,376 KB
testcase_51 AC 55 ms
5,376 KB
testcase_52 AC 105 ms
5,376 KB
testcase_53 AC 102 ms
5,376 KB
testcase_54 AC 104 ms
5,376 KB
testcase_55 AC 80 ms
5,376 KB
testcase_56 AC 2 ms
5,376 KB
testcase_57 WA -
testcase_58 AC 2 ms
5,376 KB
testcase_59 AC 32 ms
5,376 KB
testcase_60 AC 2 ms
5,376 KB
testcase_61 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define be(v) (v).begin(),(v).end()
#define pb(q) push_back(q)
typedef long long ll;
using namespace std;
const ll mod=1000000007, INF=(1LL<<60);
#define doublecout(a) cout<<fixed<<setprecision(10)<<a<<endl;




///////modint
struct mint {
    ll x; // typedef long long ll;
    mint(ll x=0):x((x%mod+mod)%mod){}
    mint operator-() const { return mint(-x);}
    mint& operator+=(const mint a) {
        if ((x += a.x) >= mod) x -= mod;
        return *this;
    }
    mint& operator-=(const mint a) {
        if ((x += mod-a.x) >= mod) x -= mod;
        return *this;
    }
    mint& operator*=(const mint a) { (x *= a.x) %= mod; return *this;}
    mint operator+(const mint a) const { return mint(*this) += a;}
    mint operator-(const mint a) const { return mint(*this) -= a;}
    mint operator*(const mint a) const { return mint(*this) *= a;}
    mint pow(ll t) const {
        if (!t) return 1;
        mint a = pow(t>>1);
        a *= a;
        if (t&1) a *= *this;
        return a;
    }

    // for prime mod
    mint inv() const { return pow(mod-2);}
    mint& operator/=(const mint a) { return *this *= a.inv();}
    mint operator/(const mint a) const { return mint(*this) /= a;}
};



///////Matrix
template<class T> struct Matrix {
    vector<vector<T> > val;
    // 縦, 横, 初期値
    Matrix(int n = 1, int m = 1, T v = 0) : val(n, vector<T>(m, v)) {}
    void init(int n, int m, T v = 0) {val.assign(n, vector<T>(m, v));}
    Matrix<T>& operator = (const Matrix<T> &A) {
        val = A.val; return *this;
    }
    size_t size() const {return val.size();}
    vector<T>& operator [] (int i) {return val[i];}
    const vector<T>& operator [] (int i) const {return val[i];}
    friend ostream& operator << (ostream& s, const Matrix<T>& M) {
        s << endl;
        for (int i = 0; i < (int)M.size(); ++i) s << M[i] << endl;
        return s;
    }
};

template<class T> Matrix<T> operator * (const Matrix<T> &A, const Matrix<T> &B) {
    Matrix<T> R(A.size(), B[0].size());
    for (int i = 0; i < A.size(); ++i)
        for (int j = 0; j < B[0].size(); ++j)
            for (int k = 0; k < B.size(); ++k)
                R[i][j] += A[i][k] * B[k][j];
    return R;
}

template<class T> Matrix<T> pow(const Matrix<T> &A, long long n) {
    Matrix<T> R(A.size(), A.size());
    auto B = A;
    for (int i = 0; i < A.size(); ++i) R[i][i] = 1;
    while (n > 0) {
        if (n & 1) R = R * B;
        B = B * B;
        n >>= 1;
    }
    return R;
}

template<class T> vector<T> operator * (const Matrix<T> &A, const vector<T> &B) {
    vector<T> v(A.size());
    for (int i = 0; i < A.size(); ++i)
        for (int k = 0; k < B.size(); ++k)
            v[i] += A[i][k] * B[k];
    return v;
}

template<class T> Matrix<T> operator + (const Matrix<T> &A, const Matrix<T> &B) {
    Matrix<T> R(A.size(), A[0].size());
    for (int i = 0; i < A.size(); ++i)
        for (int j = 0; j < A[0].size(); ++j)
            R[i][j] = A[i][j] + B[i][j];
    return R;
}

template<class T> Matrix<T> operator - (const Matrix<T> &A, const Matrix<T> &B) {
    Matrix<T> R(A.size(), A[0].size());
    for (int i = 0; i < A.size(); ++i)
        for (int j = 0; j < A[0].size(); ++j)
            R[i][j] = A[i][j] - B[i][j];
    return R;
}


int main() {
    cin.tie(0);
    cout.tie(0);
    ios::sync_with_stdio(false);
    ll n, m, t;
    cin >> n >> m >> t;
    Matrix<mint> mat(n, n, 0);
    int a, b;
    for(int i=0;i<m;i++){
        cin >> a >> b;
        mat[b][a] = 1;
    }
    mat = pow(mat, t);
    int ans = 0;
    for(int i=0;i<n;i++) if(mat[i][0].x > 0) ans++;
    cout << ans << endl;

    return 0;
}
0