結果
問題 | No.2832 Nana's Fickle Adventure |
ユーザー | GOTKAKO |
提出日時 | 2024-08-03 00:52:59 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 511 ms / 3,000 ms |
コード長 | 3,366 bytes |
コンパイル時間 | 2,522 ms |
コンパイル使用メモリ | 214,808 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-08-03 00:53:13 |
合計ジャッジ時間 | 13,076 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 137 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 244 ms
6,944 KB |
testcase_04 | AC | 128 ms
6,944 KB |
testcase_05 | AC | 17 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 32 ms
6,940 KB |
testcase_09 | AC | 14 ms
6,940 KB |
testcase_10 | AC | 32 ms
6,940 KB |
testcase_11 | AC | 242 ms
6,944 KB |
testcase_12 | AC | 251 ms
6,944 KB |
testcase_13 | AC | 3 ms
6,944 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 2 ms
6,944 KB |
testcase_16 | AC | 2 ms
6,940 KB |
testcase_17 | AC | 3 ms
6,944 KB |
testcase_18 | AC | 484 ms
6,944 KB |
testcase_19 | AC | 498 ms
6,940 KB |
testcase_20 | AC | 485 ms
6,940 KB |
testcase_21 | AC | 483 ms
6,940 KB |
testcase_22 | AC | 511 ms
6,940 KB |
testcase_23 | AC | 480 ms
6,944 KB |
testcase_24 | AC | 501 ms
6,940 KB |
testcase_25 | AC | 484 ms
6,940 KB |
testcase_26 | AC | 482 ms
6,940 KB |
testcase_27 | AC | 12 ms
6,940 KB |
testcase_28 | AC | 25 ms
6,944 KB |
testcase_29 | AC | 275 ms
6,944 KB |
testcase_30 | AC | 392 ms
6,944 KB |
testcase_31 | AC | 459 ms
6,940 KB |
testcase_32 | AC | 143 ms
6,940 KB |
testcase_33 | AC | 2 ms
6,940 KB |
testcase_34 | AC | 4 ms
6,940 KB |
testcase_35 | AC | 28 ms
6,944 KB |
testcase_36 | AC | 2 ms
6,944 KB |
testcase_37 | AC | 445 ms
6,944 KB |
testcase_38 | AC | 5 ms
6,940 KB |
testcase_39 | AC | 260 ms
6,944 KB |
testcase_40 | AC | 134 ms
6,940 KB |
testcase_41 | AC | 240 ms
6,944 KB |
testcase_42 | AC | 246 ms
6,940 KB |
testcase_43 | AC | 438 ms
6,944 KB |
testcase_44 | AC | 12 ms
6,940 KB |
testcase_45 | AC | 5 ms
6,940 KB |
testcase_46 | AC | 11 ms
6,940 KB |
testcase_47 | AC | 219 ms
6,944 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; long long mod = 998244353; //入力が必ずmod未満の時に使う. struct mint{ long long v = 0; mint(){} mint(int a){v = a;} mint(long long a){v = a;} mint(unsigned long long a){v = a;} long long val(){return v;} void modu(){v %= mod;} mint repeat2mint(const long long a,long long b){ mint ret = 1,p = a; while(b){ if(b&1) ret *= p; p *= p; b >>= 1; } return ret; }; mint operator+(const mint b){return mint(v)+=b;} mint operator-(const mint b){return mint(v)-=b;} mint operator*(const mint b){return mint(v)*=b;} mint operator/(const mint b){return mint(v)/=b;} mint operator+=(const mint b){ v += b.v; if(v >= mod) v -= mod; return *this; } mint operator-=(const mint b){ v -= b.v; if(v < 0) v += mod; return *this; } mint operator*=(const mint b){v = v*b.v%mod; return *this;} mint operator/=(mint b){ if(b == 0) assert(false); int left = mod-2; while(left){if(left&1) *this *= b; b *= b; left >>= 1;} return *this; } mint operator++(int){*this += 1; return *this;} mint operator--(int){*this -= 1; return *this;} bool operator==(const mint b){return v == b.v;} bool operator!=(const mint b){return v != b.v;} bool operator>(const mint b){return v > b.v;} bool operator>=(const mint b){return v >= b.v;} bool operator<(const mint b){return v < b.v;} bool operator<=(const mint b){return v <= b.v;} mint pow(const long long x){return repeat2mint(v,x);} mint inv(){return mint(1)/v;} }; vector<vector<mint>> multima(vector<vector<mint>> &A,vector<vector<mint>> &B){ int siza = A.size(),sizb = B.at(0).size(); vector<vector<mint>> ret(siza,vector<mint>(sizb)); for(int i=0; i<siza; i++) for(int k=0; k<sizb; k++){ for(int l=0; l<A.at(i).size(); l++){ ret.at(i).at(k) += A.at(i).at(l)*B.at(l).at(k); //ret.at(i).at(k) %= mod; } } return ret; //計算できる行列のみ. } int main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); int N,M,X; cin >> N >> M >> X; int Limit = M; vector<long long> inv(Limit+1,1); for(int i=2; i<=Limit; i++) inv.at(i) = mod-(mod/i*inv.at(mod%i) %mod); vector<vector<int>> edge(N,vector<int>(N)); while(M--){ int u,v; cin >> u >> v; u--; v--; edge.at(u).at(v)++; if(u != v) edge.at(v).at(u)++; } int n = (N+1)*N; vector<vector<mint>> Z(n,vector<mint>(n)),A(n,vector<mint>(1)); for(int i=0; i<=N; i++) for(int k=0; k<N; k++){ vector<int> now = edge.at(k); if(i < N){ now.at(i)--; if(now.at(i) < 0) continue; } int pos = i*N+k,all = 0; for(auto &e : now) all += e; if(all == 0) Z.at(n-N+k).at(pos) = 1; else for(int l=0; l<N; l++) Z.at(k*N+l).at(pos) = mint(now.at(l))*inv.at(all); } A.at(n-N+0).at(0) = 1; while(X){ if(X&1) A = multima(Z,A); Z = multima(Z,Z); X >>= 1; } vector<mint> answer(N); for(int i=0; i<=N; i++) for(int k=0; k<N; k++){ int pos = i*N+k; answer.at(k) += A.at(pos).at(0); } for(auto &a : answer) cout << a.v << "\n"; }