結果
問題 | No.1364 [Renaming] Road to Cherry from Zelkova |
ユーザー | Haa |
提出日時 | 2021-01-22 22:51:26 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,872 bytes |
コンパイル時間 | 1,627 ms |
コンパイル使用メモリ | 180,636 KB |
実行使用メモリ | 21,932 KB |
最終ジャッジ日時 | 2024-06-08 16:54:06 |
合計ジャッジ時間 | 10,386 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 6 ms
9,216 KB |
testcase_01 | AC | 6 ms
9,472 KB |
testcase_02 | AC | 6 ms
9,344 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 61 ms
11,904 KB |
testcase_24 | AC | 73 ms
11,776 KB |
testcase_25 | AC | 154 ms
15,460 KB |
testcase_26 | AC | 247 ms
19,116 KB |
testcase_27 | AC | 202 ms
17,920 KB |
testcase_28 | AC | 114 ms
13,588 KB |
testcase_29 | AC | 190 ms
17,664 KB |
testcase_30 | AC | 115 ms
13,952 KB |
testcase_31 | AC | 79 ms
12,544 KB |
testcase_32 | AC | 161 ms
16,640 KB |
testcase_33 | AC | 245 ms
18,520 KB |
testcase_34 | AC | 208 ms
17,024 KB |
testcase_35 | AC | 204 ms
16,768 KB |
testcase_36 | AC | 204 ms
16,640 KB |
testcase_37 | AC | 181 ms
15,616 KB |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | AC | 98 ms
21,932 KB |
testcase_44 | AC | 77 ms
13,664 KB |
testcase_45 | AC | 93 ms
17,068 KB |
testcase_46 | AC | 7 ms
10,496 KB |
testcase_47 | AC | 6 ms
9,216 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long int ll; typedef pair<ll,ll> P; typedef vector<ll> VI; typedef vector<VI> VVI; #define REP(i,n) for(int i=0;i<(n);i++) #define ALL(v) v.begin(),v.end() constexpr ll MOD=1000000007; constexpr ll INF=1e18; struct E{ int to; ll l; ll a; int id; }; int n, m; int M=110000; vector<vector<E>> edge(M,vector<E>(0)); vector<bool> lop(M,true); VI inc(M,0); VI ways(M,0); void dag(){ VI h(n,0); REP(i,n){ for(auto nx:edge[i]){ h[nx.to]++; } } queue<int> q; REP(i,n){ if(h[i]==0){ q.push(i); } } while(!q.empty()){ int v=q.front(); lop[v]=0; q.pop(); for(auto nx:edge[v]){ if(--h[nx.to]==0){ q.push(nx.to); } } } } bool ok=1; void initdfs(int v){ if(v==n-1) ok=0; for(auto nx:edge[v]){ inc[nx.to]++; if(inc[nx.to]==1) initdfs(nx.to); } } void initdfs2(int v){ for(auto nx:edge[v]){ inc[nx.to]--; if(lop[v]) lop[nx.to]=1; if(inc[nx.to]==0) initdfs2(nx.to); } } VI ww(M,0), lp(M,0); void dfs(int v){ for(auto nx:edge[v]){ ww[nx.to]=(ww[nx.to]+ww[v]+lp[v]*nx.a%MOD*nx.l%MOD)%MOD; lp[nx.to]=(lp[nx.to]+lp[v]*nx.a)%MOD; if(--inc[nx.to]==0) dfs(nx.to); } } int main(){ cin >> n >> m; n++; int u, v, l, a; REP(i,m){ cin >> u >> v >> l >> a; edge[u].push_back(E{v,l,a,i}); } dag(); initdfs(0); initdfs2(0); if(lop[n-1]){ if(!ok) cout << "INF" << endl; if(ok) cout << 0 << endl; return 0; } inc[0]++; initdfs(0); lp[0]=1; dfs(0); cout << ww[n-1] << endl; return 0; }