結果
問題 | No.1364 [Renaming] Road to Cherry from Zelkova |
ユーザー | mugen_1337 |
提出日時 | 2021-01-23 03:39:49 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 6,390 bytes |
コンパイル時間 | 2,302 ms |
コンパイル使用メモリ | 211,748 KB |
実行使用メモリ | 19,584 KB |
最終ジャッジ日時 | 2024-06-09 08:58:21 |
合計ジャッジ時間 | 7,554 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 3 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 3 ms
5,376 KB |
testcase_04 | AC | 3 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 3 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 7 ms
5,376 KB |
testcase_09 | AC | 6 ms
5,376 KB |
testcase_10 | AC | 8 ms
5,376 KB |
testcase_11 | AC | 9 ms
5,376 KB |
testcase_12 | AC | 8 ms
5,376 KB |
testcase_13 | AC | 73 ms
12,672 KB |
testcase_14 | AC | 96 ms
14,208 KB |
testcase_15 | AC | 101 ms
14,592 KB |
testcase_16 | AC | 70 ms
11,136 KB |
testcase_17 | AC | 31 ms
8,704 KB |
testcase_18 | AC | 118 ms
16,768 KB |
testcase_19 | AC | 118 ms
16,768 KB |
testcase_20 | AC | 118 ms
16,768 KB |
testcase_21 | AC | 119 ms
16,896 KB |
testcase_22 | AC | 117 ms
16,896 KB |
testcase_23 | AC | 24 ms
6,784 KB |
testcase_24 | AC | 26 ms
5,632 KB |
testcase_25 | AC | 71 ms
11,648 KB |
testcase_26 | AC | 115 ms
15,616 KB |
testcase_27 | AC | 83 ms
11,904 KB |
testcase_28 | AC | 52 ms
9,472 KB |
testcase_29 | AC | 76 ms
11,264 KB |
testcase_30 | AC | 51 ms
9,472 KB |
testcase_31 | AC | 34 ms
7,808 KB |
testcase_32 | AC | 62 ms
9,984 KB |
testcase_33 | AC | 104 ms
14,208 KB |
testcase_34 | AC | 103 ms
14,464 KB |
testcase_35 | AC | 85 ms
13,824 KB |
testcase_36 | AC | 90 ms
13,312 KB |
testcase_37 | AC | 61 ms
9,344 KB |
testcase_38 | AC | 86 ms
10,624 KB |
testcase_39 | AC | 85 ms
10,752 KB |
testcase_40 | AC | 82 ms
10,880 KB |
testcase_41 | AC | 85 ms
11,008 KB |
testcase_42 | AC | 81 ms
11,008 KB |
testcase_43 | AC | 46 ms
19,456 KB |
testcase_44 | AC | 38 ms
11,168 KB |
testcase_45 | AC | 48 ms
19,584 KB |
testcase_46 | AC | 7 ms
7,808 KB |
testcase_47 | WA | - |
ソースコード
#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; }