結果
問題 | No.1364 [Renaming] Road to Cherry from Zelkova |
ユーザー | tokusakurai |
提出日時 | 2021-01-22 22:47:24 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 5,968 bytes |
コンパイル時間 | 3,025 ms |
コンパイル使用メモリ | 227,376 KB |
実行使用メモリ | 32,068 KB |
最終ジャッジ日時 | 2024-06-08 16:40:38 |
合計ジャッジ時間 | 14,437 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,752 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 | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 3 ms
5,376 KB |
testcase_08 | AC | 10 ms
5,376 KB |
testcase_09 | AC | 342 ms
5,376 KB |
testcase_10 | AC | 19 ms
5,376 KB |
testcase_11 | AC | 9 ms
5,376 KB |
testcase_12 | AC | 27 ms
5,376 KB |
testcase_13 | AC | 139 ms
23,656 KB |
testcase_14 | AC | 1,258 ms
22,912 KB |
testcase_15 | AC | 235 ms
25,320 KB |
testcase_16 | AC | 286 ms
18,176 KB |
testcase_17 | AC | 67 ms
17,880 KB |
testcase_18 | AC | 237 ms
32,064 KB |
testcase_19 | AC | 270 ms
32,060 KB |
testcase_20 | AC | 240 ms
32,064 KB |
testcase_21 | AC | 263 ms
32,068 KB |
testcase_22 | AC | 274 ms
32,064 KB |
testcase_23 | AC | 46 ms
11,392 KB |
testcase_24 | AC | 26 ms
5,376 KB |
testcase_25 | AC | 78 ms
11,516 KB |
testcase_26 | AC | 129 ms
14,080 KB |
testcase_27 | AC | 84 ms
9,216 KB |
testcase_28 | AC | 57 ms
9,728 KB |
testcase_29 | AC | 77 ms
8,576 KB |
testcase_30 | AC | 57 ms
9,472 KB |
testcase_31 | AC | 819 ms
11,136 KB |
testcase_32 | AC | 61 ms
7,424 KB |
testcase_33 | AC | 115 ms
12,544 KB |
testcase_34 | AC | 124 ms
15,648 KB |
testcase_35 | AC | 142 ms
23,300 KB |
testcase_36 | AC | 154 ms
20,588 KB |
testcase_37 | AC | 59 ms
7,168 KB |
testcase_38 | TLE | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i, n) for(int i = 0; i < n; i++) #define rep2(i, x, n) for(int i = x; i <= n; i++) #define rep3(i, x, n) for(int i = x; i >= n; i--) #define each(e, v) for(auto &e: v) #define pb push_back #define eb emplace_back #define all(x) x.begin(), x.end() #define rall(x) x.rbegin(), x.rend() #define sz(x) (int)x.size() using ll = long long; using pii = pair<int, int>; using pil = pair<int, ll>; using pli = pair<ll, int>; using pll = pair<ll, ll>; const int MOD = 1000000007; //const int MOD = 998244353; const int inf = (1<<30)-1; const ll INF = (1LL<<60)-1; template<typename T> bool chmax(T &x, const T &y) {return (x < y)? (x = y, true) : false;}; template<typename T> bool chmin(T &x, const T &y) {return (x > y)? (x = y, true) : false;}; struct io_setup{ io_setup(){ ios_base::sync_with_stdio(false); cin.tie(NULL); cout << fixed << setprecision(15); } } io_setup; template<int mod> struct Mod_Int{ int x; Mod_Int() : x(0) {} Mod_Int(ll y) : x(y >= 0 ? y % mod : (mod - (-y) % mod) % mod) {} Mod_Int &operator += (const Mod_Int &p){ if((x += p.x) >= mod) x -= mod; return *this; } Mod_Int &operator -= (const Mod_Int &p){ if((x += mod - p.x) >= mod) x -= mod; return *this; } Mod_Int &operator *= (const Mod_Int &p){ x = (int) (1LL * x * p.x % mod); return *this; } Mod_Int &operator /= (const Mod_Int &p){ *this *= p.inverse(); return *this; } Mod_Int &operator ++ () {return *this += Mod_Int(1);} Mod_Int operator ++ (int){ Mod_Int tmp = *this; ++*this; return tmp; } Mod_Int &operator -- () {return *this -= Mod_Int(1);} Mod_Int operator -- (int){ Mod_Int tmp = *this; --*this; return tmp; } Mod_Int operator - () const {return Mod_Int(-x);} Mod_Int operator + (const Mod_Int &p) const {return Mod_Int(*this) += p;} Mod_Int operator - (const Mod_Int &p) const {return Mod_Int(*this) -= p;} Mod_Int operator * (const Mod_Int &p) const {return Mod_Int(*this) *= p;} Mod_Int operator / (const Mod_Int &p) const {return Mod_Int(*this) /= p;} bool operator == (const Mod_Int &p) const {return x == p.x;} bool operator != (const Mod_Int &p) const {return x != p.x;} Mod_Int inverse() const { assert(*this != Mod_Int(0)); return pow(mod-2); } Mod_Int pow(ll k) const{ Mod_Int now = *this, ret = 1; for(; k; k >>= 1, now *= now){ if(k&1) ret *= now; } return ret; } friend ostream &operator << (ostream &os, const Mod_Int &p){ return os << p.x; } friend istream &operator >> (istream &is, Mod_Int &p){ ll a; is >> a; p = Mod_Int<mod>(a); return is; } }; using mint = Mod_Int<MOD>; struct Graph{ struct edge{ int to; mint l, a; edge(int to, mint l, mint a) : to(to), l(l), a(a) {} }; vector<vector<edge>> es, rs; vector<bool> tw, c1, c2; vector<mint> dp1, dp2; const int n; Graph(int n) : n(n){ es.resize(n), rs.resize(n); tw.assign(n, false), c1.assign(n, false), c2.assign(n, false); dp1.assign(n, 0), dp2.assign(n, 0); } void add_edge(int from, int to, mint l, mint a, bool directed = true){ es[from].eb(to, l, a), rs[to].eb(from, l, a); } void dfs(int now){ c1[now] = true; each(e, es[now]) dfs(e.to); } void rfs(int now){ c2[now] = true; each(e, rs[now]) rfs(e.to); } void solve(int s, int t){ dfs(s), rfs(t); rep(i, n){ if(tw[i] && c1[i] && c2[i]){ cout << "INF\n"; return; } } dp1[s] = 0, dp2[s] = 1; rep(i, n){ each(e, es[i]){ dp1[e.to] += dp1[i]*e.a+dp2[i]*e.a*e.l; dp2[e.to] += dp2[i]*e.a; } } cout << dp1[t] << '\n'; } }; struct Strongly_Connected_Components{ vector<vector<int>> es, rs; vector<int> vs, comp; vector<bool> used; const int n; Strongly_Connected_Components(int n) : n(n){ es.resize(n), rs.resize(n); vs.resize(n), comp.resize(n), used.resize(n); } void add_edge(int from, int to, bool directed = false){ es[from].pb(to), rs[to].pb(from); if(!directed) es[to].pb(from), rs[from].pb(to); } void topological_sort(int now){ used[now] = true; each(e, es[now]) if(!used[e]) topological_sort(e); vs.pb(now); } void track_back(int now, int cnt){ used[now] = true, comp[now] = cnt; each(e, rs[now]) if(!used[e]) track_back(e, cnt); } Graph decompose(){ fill(all(used), false); rep(i, n) if(!used[i]) topological_sort(i); fill(all(used), false), reverse(all(vs)); int cnt = 0; each(e, vs) if(!used[e]) track_back(e, cnt++); Graph G(cnt); vector<int> K(cnt, 0); rep(i, n) K[comp[i]]++; rep(i, cnt){ if(K[i] > 1) G.tw[i] = true; } /* rep(i, n){ each(e, es[i]){ int u = comp[i], v = comp[e]; if(u != v) G.add_edge(u, v, true); } } */ return G; } int operator [] (int k) const {return comp[k];} }; int main(){ int N, M; cin >> N >> M; vector<int> u(M), v(M); vector<mint> l(M), a(M); Strongly_Connected_Components scc(N+1); rep(i, M){ cin >> u[i] >> v[i] >> l[i] >> a[i]; scc.add_edge(u[i], v[i], true); } Graph G = scc.decompose(); rep(i, M){ int U = scc[u[i]], V = scc[v[i]]; if(U != V) G.add_edge(U, V, l[i], a[i], true); } int s = scc[0], t = scc[N]; G.solve(s, t); }