結果
問題 | No.1340 おーじ君をさがせ |
ユーザー | 👑 CleyL |
提出日時 | 2023-06-20 15:08:37 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 85 ms / 2,000 ms |
コード長 | 3,219 bytes |
コンパイル時間 | 788 ms |
コンパイル使用メモリ | 79,360 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-28 02:09:09 |
合計ジャッジ時間 | 3,799 ms |
ジャッジサーバーID (参考情報) |
judge2 / 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 | AC | 1 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 | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 15 ms
5,376 KB |
testcase_12 | AC | 4 ms
5,376 KB |
testcase_13 | AC | 12 ms
5,376 KB |
testcase_14 | AC | 30 ms
5,376 KB |
testcase_15 | AC | 28 ms
5,376 KB |
testcase_16 | AC | 4 ms
5,376 KB |
testcase_17 | AC | 10 ms
5,376 KB |
testcase_18 | AC | 16 ms
5,376 KB |
testcase_19 | AC | 3 ms
5,376 KB |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 19 ms
5,376 KB |
testcase_22 | AC | 46 ms
5,376 KB |
testcase_23 | AC | 19 ms
5,376 KB |
testcase_24 | AC | 82 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 | 7 ms
5,376 KB |
testcase_29 | AC | 4 ms
5,376 KB |
testcase_30 | AC | 21 ms
5,376 KB |
testcase_31 | AC | 84 ms
5,376 KB |
testcase_32 | AC | 78 ms
5,376 KB |
testcase_33 | AC | 77 ms
5,376 KB |
testcase_34 | AC | 71 ms
5,376 KB |
testcase_35 | AC | 85 ms
5,376 KB |
testcase_36 | AC | 2 ms
5,376 KB |
testcase_37 | AC | 5 ms
5,376 KB |
testcase_38 | AC | 82 ms
5,376 KB |
testcase_39 | AC | 25 ms
5,376 KB |
testcase_40 | AC | 26 ms
5,376 KB |
testcase_41 | AC | 26 ms
5,376 KB |
testcase_42 | AC | 2 ms
5,376 KB |
testcase_43 | AC | 2 ms
5,376 KB |
testcase_44 | AC | 2 ms
5,376 KB |
testcase_45 | AC | 2 ms
5,376 KB |
testcase_46 | AC | 18 ms
5,376 KB |
testcase_47 | AC | 18 ms
5,376 KB |
testcase_48 | AC | 21 ms
5,376 KB |
testcase_49 | AC | 19 ms
5,376 KB |
testcase_50 | AC | 20 ms
5,376 KB |
testcase_51 | AC | 19 ms
5,376 KB |
testcase_52 | AC | 37 ms
5,376 KB |
testcase_53 | AC | 35 ms
5,376 KB |
testcase_54 | AC | 36 ms
5,376 KB |
testcase_55 | AC | 29 ms
5,376 KB |
testcase_56 | AC | 2 ms
5,376 KB |
testcase_57 | AC | 2 ms
5,376 KB |
testcase_58 | AC | 2 ms
5,376 KB |
testcase_59 | AC | 12 ms
5,376 KB |
testcase_60 | AC | 2 ms
5,376 KB |
testcase_61 | AC | 12 ms
5,376 KB |
ソースコード
#include <iostream> #include <vector> using namespace std; template <typename T> struct mat{ vector<vector<T>> x; int h,w; mat():x(vector<vector<T>>()){} mat(int h,int w):x(vector<vector<T>>(h,vector<T>(w))),h(h),w(w){} mat(int h,int w, T c):x(vector<vector<T>>(h,vector<T>(w,c))),h(h),w(w){} mat(vector<vector<T>> A):x(A),h(A.size()),w(A[0].size()){} vector<T>& operator[](int i){return x[i];} mat& operator&=(mat& y){ mat<T> ret(h,y.w,0); if(w != y.h){ for(int i = 0; h > i; i++){ for(int j = 0; y.w > j; j++){ ret[i][j] = -1; } } }else{ for(int i = 0; h > i; i++){ for(int j = 0; y.w > j; j++){ for(int k = 0; w > k; k++){ ret[i][j] |= (x[i][k]&y[k][j]); } } } } for(int i = 0; h > i; i++){ x[i].resize(y.w); } w = y.w; for(int i = 0; h > i; i++){ for(int j = 0; y.w > j; j++){ x[i][j] = ret[i][j]; } } return *this; } mat& operator*=(mat& y){ mat<T> ret(h,y.w,0); if(w != y.h){ for(int i = 0; h > i; i++){ for(int j = 0; y.w > j; j++){ ret[i][j] = -1; } } }else{ for(int i = 0; h > i; i++){ for(int j = 0; y.w > j; j++){ for(int k = 0; w > k; k++){ ret[i][j] = ret[i][j] + x[i][k]*y[k][j]; } } } } for(int i = 0; h > i; i++){ x[i].resize(y.w); } w = y.w; for(int i = 0; h > i; i++){ for(int j = 0; y.w > j; j++){ x[i][j] = ret[i][j]; } } return *this; } mat operator&(mat& y){return mat(*this) &= y;} mat operator*(mat& y){return mat(*this) *= y;} mat powand(long long n){ mat<T> res(h,w); mat<T> ret(h,w,0); mat<T> a(h,w); for(int i = 0; h > i; i++){ ret[i][i] = 1; } for(int i = 0; h > i; i++){ for(int j = 0; w > j; j++){ a[i][j] = (*this)[i][j]; } } while(n > 0){ if(n & 1){ ret &= a; } a &= a; n/=2; } for(int i = 0; h > i; i++){ for(int j = 0; w > j; j++){ res[i][j] = ret[i][j]; } } return res; } mat pow(long long n){//正方行列のみ mat<T> res(h,w); mat<T> ret(h,w,0); mat<T> a(h,w); for(int i = 0; h > i; i++){ ret[i][i] = 1; } for(int i = 0; h > i; i++){ for(int j = 0; w > j; j++){ a[i][j] = (*this)[i][j]; } } while(n > 0){ if(n & 1){ ret *= a; } a *= a; n/=2; } for(int i = 0; h > i; i++){ for(int j = 0; w > j; j++){ res[i][j] = ret[i][j]; } } return res; } friend ostream &operator<<(ostream &os, const mat &m){ for(int i = 0; m.h > i; i++){ for(int j = 0; m.w > j; j++){ os << m.x[i][j]; if(j+1 != m.w)cout << " "; } if(i+1 != m.h)cout << "\n"; } return os; } }; int main(){ int n,m;long long t;cin>>n>>m>>t; mat<int> A(n,n); for(int i = 0; m > i; i++){ int x,y;cin>>x>>y; A[x][y] = 1; } A = A.powand(t); int ans = 0; for(int i = 0; n > i; i++){ ans += A[0][i]; } cout << ans << endl; }