結果
問題 | No.1340 おーじ君をさがせ |
ユーザー | outline |
提出日時 | 2021-01-15 22:45:37 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,948 bytes |
コンパイル時間 | 1,345 ms |
コンパイル使用メモリ | 141,668 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-05-05 02:55:42 |
合計ジャッジ時間 | 6,033 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 1 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | RE | - |
testcase_11 | AC | 14 ms
5,376 KB |
testcase_12 | WA | - |
testcase_13 | AC | 10 ms
5,376 KB |
testcase_14 | AC | 27 ms
5,376 KB |
testcase_15 | AC | 24 ms
5,376 KB |
testcase_16 | WA | - |
testcase_17 | AC | 7 ms
5,376 KB |
testcase_18 | AC | 13 ms
5,376 KB |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | WA | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | AC | 2 ms
5,376 KB |
testcase_37 | RE | - |
testcase_38 | RE | - |
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 | 2 ms
5,376 KB |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | WA | - |
testcase_50 | WA | - |
testcase_51 | WA | - |
testcase_52 | AC | 31 ms
5,376 KB |
testcase_53 | AC | 32 ms
5,376 KB |
testcase_54 | WA | - |
testcase_55 | WA | - |
testcase_56 | RE | - |
testcase_57 | WA | - |
testcase_58 | WA | - |
testcase_59 | WA | - |
testcase_60 | WA | - |
testcase_61 | WA | - |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <cmath> #include <queue> #include <string> #include <map> #include <set> #include <stack> #include <tuple> #include <deque> #include <array> #include <numeric> #include <bitset> #include <iomanip> #include <cassert> #include <chrono> #include <random> #include <limits> #include <iterator> #include <functional> #include <sstream> #include <fstream> #include <complex> #include <cstring> #include <unordered_map> #include <unordered_set> using namespace std; using ll = long long; constexpr int INF = 1001001001; constexpr int mod = 1000000007; // constexpr int mod = 998244353; template<class T> inline bool chmax(T& x, T y){ if(x < y){ x = y; return true; } return false; } template<class T> inline bool chmin(T& x, T y){ if(x > y){ x = y; return true; } return false; } using Vec = vector<int>; using Mat = vector<Vec>; Mat Mul(const Mat& A, const Mat& B){ Mat C(A.size(), Vec(B.size())); for(int i = 0; i < (int)A.size(); ++i){ for(int k = 0; k < (int)A[i].size(); ++k){ for(int j = 0; j < (int)B.size(); ++j){ C[i][j] ^= A[i][k] & B[k][j]; } } } return C; } Mat Pow(Mat A, ll n){ Mat B(A.size(), Vec(A.size())); for(int i = 0; i < (int)A.size(); ++i) B[i][i] = 1; while(n > 0){ if(n & 1) B = Mul(B, A); A = Mul(A, A); n >>= 1; } return B; } int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int N, M, T; cin >> N >> M >> T; vector<vector<int>> g(N, vector<int>(N)); vector<int> outdeg(N); for(int i = 0; i < M; ++i){ int a, b; cin >> a >> b; g[a][b] = 1; outdeg[a] += 1; } g = Pow(g, T + 1); int ans = 0; for(int i = 0; i < N; ++i) ans += g[0][i] & (outdeg[i] > 0); cout << ans << endl; return 0; }