結果

問題 No.1340 おーじ君をさがせ
ユーザー lorent_kyoprolorent_kyopro
提出日時 2021-01-16 00:39:41
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,619 bytes
コンパイル時間 2,446 ms
コンパイル使用メモリ 208,172 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-05 03:07:19
合計ジャッジ時間 4,641 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
5,376 KB
testcase_04 WA -
testcase_05 AC 2 ms
5,376 KB
testcase_06 WA -
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 WA -
testcase_12 WA -
testcase_13 AC 12 ms
5,376 KB
testcase_14 AC 33 ms
5,376 KB
testcase_15 AC 29 ms
5,376 KB
testcase_16 WA -
testcase_17 AC 9 ms
5,376 KB
testcase_18 AC 16 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 WA -
testcase_21 AC 17 ms
5,376 KB
testcase_22 AC 45 ms
5,376 KB
testcase_23 AC 17 ms
5,376 KB
testcase_24 AC 84 ms
5,376 KB
testcase_25 AC 4 ms
5,376 KB
testcase_26 AC 3 ms
5,376 KB
testcase_27 AC 3 ms
5,376 KB
testcase_28 AC 5 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 18 ms
5,376 KB
testcase_31 AC 86 ms
5,376 KB
testcase_32 AC 79 ms
5,376 KB
testcase_33 AC 77 ms
5,376 KB
testcase_34 AC 73 ms
5,376 KB
testcase_35 AC 84 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 AC 85 ms
5,376 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 2 ms
5,376 KB
testcase_45 AC 1 ms
5,376 KB
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 20 ms
5,376 KB
testcase_50 AC 21 ms
5,376 KB
testcase_51 AC 21 ms
5,376 KB
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 AC 1 ms
5,376 KB
testcase_57 AC 2 ms
5,376 KB
testcase_58 AC 1 ms
5,376 KB
testcase_59 WA -
testcase_60 AC 1 ms
5,376 KB
testcase_61 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <atcoder/modint>
using namespace atcoder;
using mint = modint1000000007;
// using mint = modint998244353;
#include <bits/stdc++.h>
#define rep(i, n) for (int i = 0; i < (int)n; ++i)
#define rrep(i, n) for (int i = (int)n-1; i >= 0; --i)
using namespace std;
using ll = long long;
template<typename T>
inline bool chmax(T& a, const T& b) {
    if (a < b){
        a = b;
        return true;
    }
    return false;
}
template<typename T>
inline bool chmin(T& a, const T& b) {
    if (b < a) {
        a = b;
        return true;
    }
    return false;
}
/**
 * @brief 多次元 vector の作成
 * @author えびちゃん
 */
namespace detail {
    template<typename T, int N>
    auto make_vec(vector<int>& sizes, T const& x) {
        if constexpr (N == 1) {
            return vector(sizes[0], x);
        } else {
            int size = sizes[N-1];
            sizes.pop_back();
            return vector(size, make_vec<T, N-1>(sizes, x));
        }
    }
}
template<typename T, int N>
auto make_vec(int const(&sizes)[N], T const& x = T()) {
    vector<int> s(N);
    for (int i = 0; i < N; ++i) s[i] = sizes[N-i-1];
    return detail::make_vec<T, N>(s, x);
}
__attribute__((constructor))
void fast_io() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
}

template <typename T>
struct matrix {
    using vec = vector<T>;
    using mat = vector<vec>;
    
    mat M;
    
    matrix(size_t r, size_t c) : M(r, vec(c)) {}
    matrix(mat M) : M(M) {}

    size_t size() const { return M.size();}
    vec& operator[](size_t i) { return M[i];}
    const vec& operator[](size_t i) const { return M[i];};
    static matrix cross(const matrix& A, const matrix& B) {
        matrix res(A.size(), B[0].size());
        for (int i = 0; i < (int)A.size(); ++i)
            for (int j = 0; j < (int)B[0].size(); ++j)
                for (int k = 0; k < (int)B.size(); ++k)
                    res[i][j] |= A[i][k] & B[k][j];
        return res;
    }

    static matrix identity(size_t n) {
        matrix res(n, n);
        for (int i = 0; i < (int)n; ++i) res[i][i] = 1;
        return res;
    }

    matrix pow(long long n) const {
        matrix A(M), res = identity(size());
        while (n > 0) {
            if (n & 1) res = cross(res, A);
            A = cross(A, A);
            n >>= 1;
        }
        return res;
    }
};

int main() {
    int n, m;
    ll t;
    cin >> n >> m >> t;
    matrix<int> mat(n, n);
    rep(i, m) {
        int a, b;
        cin >> a >> b;
        mat[b][a] = 1;
    }
    mat = mat.pow(t);
    int ans = 0;
    rep(i, n) ans += mat[0][i];
    cout << ans << '\n';
}
0