結果

問題 No.1364 [Renaming] Road to Cherry from Zelkova
ユーザー chocoruskchocorusk
提出日時 2021-01-22 22:51:24
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 2,525 bytes
コンパイル時間 2,354 ms
コンパイル使用メモリ 144,264 KB
実行使用メモリ 44,080 KB
最終ジャッジ日時 2024-12-28 04:54:32
合計ジャッジ時間 15,074 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
9,984 KB
testcase_01 AC 9 ms
9,984 KB
testcase_02 AC 10 ms
10,112 KB
testcase_03 AC 10 ms
9,984 KB
testcase_04 AC 8 ms
10,112 KB
testcase_05 AC 7 ms
9,984 KB
testcase_06 AC 8 ms
9,984 KB
testcase_07 AC 9 ms
10,112 KB
testcase_08 AC 25 ms
12,288 KB
testcase_09 AC 16 ms
10,496 KB
testcase_10 AC 25 ms
11,264 KB
testcase_11 AC 22 ms
11,520 KB
testcase_12 AC 22 ms
11,136 KB
testcase_13 AC 279 ms
31,780 KB
testcase_14 AC 336 ms
27,904 KB
testcase_15 AC 370 ms
32,000 KB
testcase_16 AC 250 ms
23,936 KB
testcase_17 AC 139 ms
26,752 KB
testcase_18 AC 475 ms
40,212 KB
testcase_19 AC 457 ms
40,336 KB
testcase_20 AC 509 ms
40,276 KB
testcase_21 AC 485 ms
40,216 KB
testcase_22 AC 481 ms
40,220 KB
testcase_23 AC 92 ms
17,664 KB
testcase_24 AC 87 ms
11,008 KB
testcase_25 AC 224 ms
20,736 KB
testcase_26 AC 358 ms
25,216 KB
testcase_27 AC 259 ms
18,048 KB
testcase_28 AC 172 ms
17,664 KB
testcase_29 AC 247 ms
17,408 KB
testcase_30 AC 182 ms
17,792 KB
testcase_31 WA -
testcase_32 AC 191 ms
15,616 KB
testcase_33 AC 335 ms
22,784 KB
testcase_34 AC 320 ms
26,112 KB
testcase_35 WA -
testcase_36 AC 350 ms
32,132 KB
testcase_37 AC 194 ms
15,232 KB
testcase_38 AC 262 ms
19,328 KB
testcase_39 AC 262 ms
19,584 KB
testcase_40 AC 310 ms
19,456 KB
testcase_41 AC 281 ms
19,328 KB
testcase_42 AC 303 ms
19,456 KB
testcase_43 AC 167 ms
44,080 KB
testcase_44 AC 142 ms
30,168 KB
testcase_45 AC 145 ms
37,676 KB
testcase_46 WA -
testcase_47 AC 7 ms
9,984 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