結果
問題 | No.1364 [Renaming] Road to Cherry from Zelkova |
ユーザー | milanis48663220 |
提出日時 | 2021-01-22 22:45:31 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 4,860 bytes |
コンパイル時間 | 1,392 ms |
コンパイル使用メモリ | 109,316 KB |
実行使用メモリ | 34,584 KB |
最終ジャッジ日時 | 2024-12-28 04:20:57 |
合計ジャッジ時間 | 8,458 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
7,236 KB |
testcase_01 | AC | 4 ms
7,424 KB |
testcase_02 | AC | 5 ms
7,364 KB |
testcase_03 | AC | 4 ms
7,296 KB |
testcase_04 | AC | 5 ms
7,256 KB |
testcase_05 | AC | 4 ms
7,256 KB |
testcase_06 | AC | 4 ms
7,364 KB |
testcase_07 | AC | 4 ms
7,364 KB |
testcase_08 | AC | 13 ms
9,088 KB |
testcase_09 | AC | 7 ms
7,680 KB |
testcase_10 | AC | 12 ms
8,448 KB |
testcase_11 | AC | 11 ms
8,536 KB |
testcase_12 | AC | 11 ms
8,404 KB |
testcase_13 | AC | 140 ms
24,652 KB |
testcase_14 | AC | 163 ms
22,600 KB |
testcase_15 | AC | 181 ms
25,184 KB |
testcase_16 | AC | 116 ms
19,180 KB |
testcase_17 | AC | 70 ms
19,604 KB |
testcase_18 | AC | 246 ms
31,196 KB |
testcase_19 | AC | 248 ms
31,180 KB |
testcase_20 | AC | 242 ms
31,204 KB |
testcase_21 | AC | 232 ms
31,068 KB |
testcase_22 | AC | 251 ms
31,192 KB |
testcase_23 | AC | 46 ms
14,452 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | AC | 75 ms
15,488 KB |
testcase_31 | AC | 57 ms
14,840 KB |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | AC | 184 ms
27,016 KB |
testcase_36 | AC | 163 ms
25,236 KB |
testcase_37 | WA | - |
testcase_38 | AC | 93 ms
15,312 KB |
testcase_39 | AC | 94 ms
15,232 KB |
testcase_40 | AC | 95 ms
15,360 KB |
testcase_41 | AC | 96 ms
15,428 KB |
testcase_42 | AC | 96 ms
15,428 KB |
testcase_43 | AC | 85 ms
34,584 KB |
testcase_44 | AC | 64 ms
25,100 KB |
testcase_45 | WA | - |
testcase_46 | AC | 25 ms
18,964 KB |
testcase_47 | WA | - |
ソースコード
#include <iostream> #include <algorithm> #include <iomanip> #include <vector> #include <queue> #include <set> #include <map> #include <cassert> #define debug_value(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << #x << "=" << x << endl; #define debug(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << x << endl; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } using namespace std; typedef long long ll; const ll MOD = 1000000007; class ModInt{ public: ll v; ModInt(ll _v = 0){ if(_v >= MOD) _v %= MOD; v = _v; } ModInt operator+(ll n){ return ModInt((v+n)%MOD); } ModInt operator-(ll n){ return ModInt((v-n+MOD)%MOD); } ModInt operator*(ll n){ if(n >= MOD) n %= MOD; return ModInt((v*n)%MOD); } ModInt operator/(ll n){ return ModInt((ModInt(n).inv()*v).v%MOD); } void operator+=(ll n){ v = (v+n)%MOD; } void operator-=(ll n){ v = (v-n+MOD)%MOD; } void operator*=(ll n){ v = (v*n+MOD)%MOD; } ModInt operator+(ModInt n){ return ModInt((v+n.v)%MOD); } ModInt operator-(ModInt n){ return ModInt((v-n.v+MOD)%MOD); } ModInt operator*(ModInt n){ return ModInt((v*n.v)%MOD); } ModInt operator/(ModInt n){ return ModInt((n.inv()*v).v%MOD); } void operator+=(ModInt n){ v = (v+n.v)%MOD; } void operator-=(ModInt n){ v = (v-n.v+MOD)%MOD; } void operator*=(ModInt n){ v = (v*n.v)%MOD; } void operator=(ModInt n){ v = n.v; } bool operator==(ModInt n){ return v == n.v; } bool operator!=(ModInt n){ return v != n.v; } void operator=(ll n){ v = n; } ModInt inv(){ if(v == 1) return ModInt(1); else return ModInt(MOD-ModInt(MOD%v).inv().v*(MOD/v)%MOD); } }; ostream& operator<<(ostream& os, const ModInt& m){ os << m.v; return os; } istream & operator >> (istream &in, ModInt &m){ in >> m.v; return in; } class Scc{ public: int N; vector<vector<int>> G; vector<vector<int>> G_inv; vector<int> idx; Scc(int n){ N = n; G = vector<vector<int>>(n, vector<int>()); G_inv = vector<vector<int>>(n, vector<int>()); used = vector<bool>(n, false); idx = vector<int>(n); } void add_edge(int from, int to){ G[from].push_back(to); G_inv[to].push_back(from); } vector<vector<int>> scc(){ vector<vector<int>> ans; for(int i = 0; i < N; i++){ if(!used[i]) dfs1(i); } clear(); int cur = 0; for(int i = vs.size()-1; i >= 0; i--){ if(!used[vs[i]]) { dfs2(vs[i], cur); cur++; ans.push_back(buf); buf.clear(); } } return ans; } private: vector<bool> used; vector<int> vs; vector<int> buf; void clear(){ for(int i = 0; i < N; i++) used[i] = false; } void dfs1(int v){ used[v] = true; for(int i = 0; i < G[v].size(); i++){ if(!used[G[v][i]]) dfs1(G[v][i]); } vs.push_back(v); } void dfs2(int v, int k){ used[v] = true; idx[v] = k; for(int i = 0; i < G_inv[v].size(); i++){ if(!used[G_inv[v][i]]) dfs2(G_inv[v][i], k); } buf.push_back(v); } }; struct edge{ int to; ModInt l; int a; }; ModInt dp_sum[100001]; ModInt dp_cnt[100001]; vector<edge> g[100001]; int main(){ ios::sync_with_stdio(false); cin.tie(0); cout << setprecision(10) << fixed; int n, m; cin >> n >> m; Scc scc(n+1); for(int i = 0; i < m; i++){ int u, v, l, a; cin >> u >> v >> l >> a; scc.add_edge(u, v); g[u].push_back((edge){v, ModInt(l), a}); } auto v = scc.scc(); vector<int> tsort; bool started = false; for(auto u : v){ if(started && u.size() > 1){ cout << "INF" << endl; return 0; } for(int x : u){ if(x == 0) started = true; } tsort.push_back(u[0]); } dp_cnt[0] = 1; for(int u : tsort){ for(edge e : g[u]){ dp_cnt[e.to] += dp_cnt[u]*e.a; dp_sum[e.to] += dp_sum[u]*e.a+e.l*dp_cnt[u]*e.a; } } cout << dp_sum[n] << endl; }