結果

問題 No.1364 [Renaming] Road to Cherry from Zelkova
ユーザー chocoruskchocorusk
提出日時 2021-01-22 22:51:24
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,525 bytes
コンパイル時間 1,726 ms
コンパイル使用メモリ 144,404 KB
実行使用メモリ 44,076 KB
最終ジャッジ日時 2024-06-08 16:53:48
合計ジャッジ時間 12,022 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
10,112 KB
testcase_01 AC 5 ms
9,984 KB
testcase_02 AC 5 ms
10,112 KB
testcase_03 AC 5 ms
9,984 KB
testcase_04 AC 6 ms
9,984 KB
testcase_05 AC 5 ms
9,856 KB
testcase_06 AC 6 ms
9,984 KB
testcase_07 AC 5 ms
9,984 KB
testcase_08 AC 19 ms
12,160 KB
testcase_09 AC 11 ms
10,496 KB
testcase_10 AC 20 ms
11,136 KB
testcase_11 AC 18 ms
11,520 KB
testcase_12 AC 19 ms
11,008 KB
testcase_13 AC 225 ms
31,788 KB
testcase_14 AC 288 ms
27,904 KB
testcase_15 AC 294 ms
32,000 KB
testcase_16 AC 209 ms
24,064 KB
testcase_17 AC 113 ms
26,752 KB
testcase_18 AC 399 ms
40,196 KB
testcase_19 AC 400 ms
40,336 KB
testcase_20 AC 403 ms
40,212 KB
testcase_21 AC 403 ms
40,216 KB
testcase_22 AC 394 ms
40,220 KB
testcase_23 AC 85 ms
17,664 KB
testcase_24 AC 78 ms
11,008 KB
testcase_25 AC 192 ms
20,864 KB
testcase_26 AC 298 ms
25,088 KB
testcase_27 AC 219 ms
18,048 KB
testcase_28 AC 145 ms
17,664 KB
testcase_29 AC 212 ms
17,280 KB
testcase_30 AC 142 ms
17,920 KB
testcase_31 WA -
testcase_32 AC 171 ms
15,488 KB
testcase_33 AC 283 ms
22,784 KB
testcase_34 AC 265 ms
26,240 KB
testcase_35 WA -
testcase_36 AC 292 ms
32,124 KB
testcase_37 AC 170 ms
15,104 KB
testcase_38 AC 232 ms
19,300 KB
testcase_39 AC 232 ms
19,456 KB
testcase_40 AC 238 ms
19,328 KB
testcase_41 AC 234 ms
19,456 KB
testcase_42 AC 232 ms
19,456 KB
testcase_43 AC 135 ms
44,076 KB
testcase_44 AC 106 ms
30,040 KB
testcase_45 AC 125 ms
37,676 KB
testcase_46 WA -
testcase_47 AC 6 ms
10,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#include <utility>
#include <functional>
#include <stack>
#include <array>
#include <list>
#define popcount __builtin_popcount
using namespace std;
typedef long long int ll;
typedef pair<int, int> P;
const ll MOD=1e9+7;
struct SCC{
    vector<vector<int>> g, gr;
    int n, k;
    vector<int> cmp, vs;
    vector<bool> used;
    void dfs(int x){
        used[x]=1;
        for(auto y:g[x]){
            if(!used[y]) dfs(y);
        }
        vs.push_back(x);
    }
    void rdfs(int v, int k){
        used[v]=1;
        cmp[v]=k;
        for(auto y:gr[v]){
            if(!used[y]) rdfs(y, k);
        }
    }
    SCC(const vector<vector<int>> &g):g(g), n(g.size()), cmp(n), used(n){
        gr.resize(n);
        for(int x=0; x<n; x++) for(auto y:g[x]) gr[y].push_back(x);
        for(int i=0; i<n; i++){
            if(!used[i]) dfs(i);
        }
        fill(used.begin(), used.end(), 0);
        k=0;
        for(int i=vs.size()-1; i>=0; i--){
            if(!used[vs[i]]) rdfs(vs[i], k++);
        }
    }
};
int u[200010], v[200010];
ll l[200020], a[200020];
vector<P> g[200020];
int main()
{
    int n, m;
    cin>>n>>m;
    vector<vector<int>> g0(n+1);
    for(int i=0; i<m; i++){
        cin>>u[i]>>v[i]>>l[i]>>a[i];
        g[u[i]].push_back({v[i], i});
        g0[u[i]].push_back(v[i]);
    }
    SCC scc(g0);
    vector<vector<int>> w(scc.k);
    for(int i=0; i<=n; i++){
        w[scc.cmp[i]].push_back(i);
    }
    bool dame[100010]={};
    for(int i=0; i<scc.k; i++){
        if(w[i].size()>1){
            for(auto x:w[i]) dame[x]=1;
        }
    }
    if(dame[0] || dame[n]){
        cout<<"INF"<<endl;
        return 0;
    }
    ll dp[100010]={};
    dp[0]=1;
    ll dps[100010]={};
    bool ok[100010]={};
    ok[0]=1;
    for(int i=0; i<scc.k; i++){
        if(w[i].size()>1) continue;
        int x=w[i][0];
        for(auto q:g[x]){
            int i=q.second;
            int y=q.first;
            if(dame[y]) continue;
            ok[y]=1;
            (dp[y]+=dp[x]*a[i])%=MOD;
            (dps[y]+=dps[x]*a[i]+dp[x]*l[i]%MOD*a[i])%=MOD;
        }
    }
    if(!ok[n]){
        cout<<"INF"<<endl;
    }else{
        cout<<dps[n]<<endl;
    }

    return 0;
}
0