結果

問題 No.1364 [Renaming] Road to Cherry from Zelkova
ユーザー mugen_1337mugen_1337
提出日時 2021-01-23 03:39:49
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 6,390 bytes
コンパイル時間 2,744 ms
コンパイル使用メモリ 209,924 KB
実行使用メモリ 19,476 KB
最終ジャッジ日時 2023-08-28 13:42:12
合計ジャッジ時間 8,588 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 2 ms
4,376 KB
testcase_05 AC 2 ms
4,380 KB
testcase_06 AC 1 ms
4,384 KB
testcase_07 AC 1 ms
4,380 KB
testcase_08 AC 6 ms
4,376 KB
testcase_09 AC 3 ms
4,376 KB
testcase_10 AC 7 ms
4,376 KB
testcase_11 AC 5 ms
4,380 KB
testcase_12 AC 7 ms
4,380 KB
testcase_13 AC 65 ms
12,472 KB
testcase_14 AC 96 ms
14,208 KB
testcase_15 AC 90 ms
14,344 KB
testcase_16 AC 65 ms
11,156 KB
testcase_17 AC 29 ms
8,652 KB
testcase_18 AC 110 ms
16,704 KB
testcase_19 AC 113 ms
16,832 KB
testcase_20 AC 110 ms
16,832 KB
testcase_21 AC 112 ms
16,836 KB
testcase_22 AC 111 ms
16,700 KB
testcase_23 AC 25 ms
6,816 KB
testcase_24 AC 27 ms
5,488 KB
testcase_25 AC 69 ms
11,472 KB
testcase_26 AC 106 ms
15,580 KB
testcase_27 AC 79 ms
11,864 KB
testcase_28 AC 49 ms
9,444 KB
testcase_29 AC 76 ms
11,188 KB
testcase_30 AC 53 ms
9,456 KB
testcase_31 AC 33 ms
7,460 KB
testcase_32 AC 63 ms
9,944 KB
testcase_33 AC 101 ms
14,120 KB
testcase_34 AC 99 ms
14,396 KB
testcase_35 AC 86 ms
13,580 KB
testcase_36 AC 86 ms
13,012 KB
testcase_37 AC 62 ms
9,156 KB
testcase_38 AC 85 ms
10,500 KB
testcase_39 AC 87 ms
10,736 KB
testcase_40 AC 85 ms
10,708 KB
testcase_41 AC 87 ms
10,776 KB
testcase_42 AC 87 ms
10,648 KB
testcase_43 AC 48 ms
19,476 KB
testcase_44 AC 35 ms
10,804 KB
testcase_45 AC 47 ms
19,332 KB
testcase_46 AC 5 ms
7,728 KB
testcase_47 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define ALL(x) begin(x),end(x)
#define rep(i,n) for(int i=0;i<(n);i++)
#define debug(v) cout<<#v<<":";for(auto x:v){cout<<x<<' ';}cout<<endl;
#define mod 1000000007
using ll=long long;
const int INF=1000000000;
const ll LINF=1001002003004005006ll;
int dx[]={1,0,-1,0},dy[]={0,1,0,-1};
// ll gcd(ll a,ll b){return b?gcd(b,a%b):a;}
template<class T>bool chmax(T &a,const T &b){if(a<b){a=b;return true;}return false;}
template<class T>bool chmin(T &a,const T &b){if(b<a){a=b;return true;}return false;}

struct IOSetup{
    IOSetup(){
        cin.tie(0);
        ios::sync_with_stdio(0);
        cout<<fixed<<setprecision(12);
    }
} iosetup;
 
template<typename T>
ostream &operator<<(ostream &os,const vector<T>&v){
    for(int i=0;i<(int)v.size();i++) os<<v[i]<<(i+1==(int)v.size()?"":" ");
    return os;
}
template<typename T>
istream &operator>>(istream &is,vector<T>&v){
    for(T &x:v)is>>x;
    return is;
}

#line 1 "Graph2/GraphTemplate.cpp"
// graph template
// ref : https://ei1333.github.io/library/graph/graph-template.cpp
template<typename T=int>
struct Edge{
    int from,to;
    T w;
    int idx;
    Edge()=default;
    Edge(int from,int to,T w=1,int idx=-1):from(from),to(to),w(w),idx(idx){}
    operator int() const{return to;}
};

template<typename T=int>
struct Graph{
    vector<vector<Edge<T>>> g;
    int V,E;
    Graph()=default;
    Graph(int n):g(n),V(n),E(0){}

    size_t size(){
        return g.size();
    }
    void resize(int k){
        g.resize(k);
    }
    inline const vector<Edge<T>> &operator[](int k)const{
        return (g.at(k));
    }
    inline vector<Edge<T>> &operator[](int k){
        return (g.at(k));
    }
    void add_directed_edge(int from,int to,T cost=1){
        g[from].emplace_back(from,to,cost,E++);
    }
    void add_edge(int from,int to,T cost=1){
        g[from].emplace_back(from,to,cost,E);
        g[to].emplace_back(to,from,cost,E++);
    }
    void read(int m,int pad=-1,bool weighted=false,bool directed=false){
        for(int i=0;i<m;i++){
            int u,v;cin>>u>>v;
            u+=pad,v+=pad;
            T w=T(1);
            if(weighted) cin>>w;
            if(directed) add_directed_edge(u,v,w);
            else         add_edge(u,v,w);
        }
    }
};
#line 2 "Graph2/StronglyConnectedbelongonents.cpp"

// scc.belong[i]    : strongly connected belongonents i belongs 
// scc.group[i]   : vertice i-th strongly connected belongonent has
// scc.compressed : compressed Graph, DAG
template<typename T=int>
struct StronglyConnectedbelongonents{
    private:
    Graph<T> g,rg;
    vector<int> check;
    void dfs(int cur,vector<int> &ord){
        for(auto &to:g[cur])if(!check[to]){
            check[to]=true;
            dfs(to,ord);
        }
        ord.push_back(cur);
    }
    void rdfs(int cur,int p){
        for(auto &to:rg[cur])if(belong[to]==-1){
            belong[to]=p;
            rdfs(to,p);
        }
    }

    void build(){
        vector<int> ord;
        for(int i=0;i<(int)g.size();i++)if(!check[i]){
            check[i]=true;
            dfs(i,ord);
        }
        int ptr=0;;
        for(int i=(int)ord.size()-1;i>=0;i--)if(belong[ord[i]]==-1){
            belong[ord[i]]=ptr;
            rdfs(ord[i],ptr);ptr++;
        }
        compressed.resize(ptr);
        group.resize(ptr);
        for(int i=0;i<(int)g.size();i++){
            int u=belong[i];
            group[u].push_back(i);
            for(auto &e:g[i]){
                int v=belong[e];
                if(u!=v) compressed.add_directed_edge(u,v,e.w);
            }
        }
        return ;
    }

    public:
    vector<int> belong;
    vector<vector<int>> group;
    Graph<T> compressed;
    
    StronglyConnectedbelongonents(Graph<T> &g):g(g),rg(g.size()),check(g.size()),belong(g.size(),-1){
        for(int i=0;i<(int)g.size();i++)for(auto &e:g[i]) rg.add_directed_edge(e.to,e.from,e.w);
        build();
    }
};

template<ll Mod>
struct ModInt{
    long long x;
    ModInt():x(0){}
    ModInt(long long y):x(y>=0?y%Mod:(Mod-(-y)%Mod)%Mod){}
    ModInt &operator+=(const ModInt &p){
        if((x+=p.x)>=Mod) x-=Mod;
        return *this;
    }
    ModInt &operator-=(const ModInt &p){
        if((x+=Mod-p.x)>=Mod)x-=Mod;
        return *this;
    }
    ModInt &operator*=(const ModInt &p){
        x=(int)(1ll*x*p.x%Mod);
        return *this;
    }
    ModInt &operator/=(const ModInt &p){
        (*this)*=p.inverse();
        return *this;
    }
    ModInt operator-()const{return ModInt(-x);}
    ModInt operator+(const ModInt &p)const{return ModInt(*this)+=p;}
    ModInt operator-(const ModInt &p)const{return ModInt(*this)-=p;}
    ModInt operator*(const ModInt &p)const{return ModInt(*this)*=p;}
    ModInt operator/(const ModInt &p)const{return ModInt(*this)/=p;}
    bool operator==(const ModInt &p)const{return x==p.x;}
    bool operator!=(const ModInt &p)const{return x!=p.x;}
    ModInt inverse()const{
        int a=x,b=Mod,u=1,v=0,t;
        while(b>0){
            t=a/b;
            swap(a-=t*b,b);swap(u-=t*v,v);
        }
        return ModInt(u);
    }
    ModInt pow(long long n)const{
        ModInt ret(1),mul(x);
        while(n>0){
            if(n&1) ret*=mul;
            mul*=mul;n>>=1;
        }
        return ret;
    }
    friend ostream &operator<<(ostream &os,const ModInt &p){return os<<p.x;}
    friend istream &operator>>(istream &is,ModInt &a){long long t;is>>t;a=ModInt<Mod>(t);return (is);}
    static int get_mod(){return Mod;}
};

using mint=ModInt<1000000007>;

signed main(){
    int n,m;cin>>n>>m;n++;
    Graph<mint> g(n);
    vector<mint> a(m);
    rep(i,m){
        int u,v;mint c;cin>>u>>v>>c>>a[i];
        g.add_directed_edge(u,v,c);
    }

    vector<int> cnt(n,0),inf(n,0);
    vector<mint> dp1(n,0),dp2(n,0);

    function<void(int)> dfs=[&](int cur){
        if(cnt[cur]==1){
            inf[cur]=1;
            cnt[cur]=2;
            return ;
        }
        if(cnt[cur]) return ;

        cnt[cur]++;
        
        if(cur==n-1) dp1[cur]=1;

        for(auto &e:g[cur]){
            dfs(e);

            if(inf[e]) inf[cur]=1;
            else{
                dp1[cur]+=dp1[e]*a[e.idx];
                dp2[cur]+=dp2[e]*a[e.idx]+dp1[e]*a[e.idx]*e.w;
            }
        }
        cnt[cur]++;
    };
    dfs(0);

    if(inf[0]) cout<<"INF"<<endl;
    else cout<<dp2[0]<<endl;
    return 0;
}
0