結果
問題 | No.1364 [Renaming] Road to Cherry from Zelkova |
ユーザー | kmjp |
提出日時 | 2021-01-22 23:18:19 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,701 bytes |
コンパイル時間 | 2,446 ms |
コンパイル使用メモリ | 219,444 KB |
実行使用メモリ | 137,668 KB |
最終ジャッジ日時 | 2024-06-08 18:03:00 |
合計ジャッジ時間 | 13,811 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 79 ms
107,776 KB |
testcase_01 | WA | - |
testcase_02 | AC | 80 ms
107,776 KB |
testcase_03 | AC | 81 ms
107,776 KB |
testcase_04 | AC | 80 ms
108,032 KB |
testcase_05 | AC | 80 ms
108,032 KB |
testcase_06 | AC | 82 ms
108,032 KB |
testcase_07 | AC | 80 ms
107,776 KB |
testcase_08 | AC | 92 ms
109,688 KB |
testcase_09 | AC | 84 ms
108,416 KB |
testcase_10 | AC | 89 ms
109,312 KB |
testcase_11 | AC | 88 ms
109,312 KB |
testcase_12 | AC | 89 ms
109,184 KB |
testcase_13 | AC | 223 ms
128,572 KB |
testcase_14 | AC | 259 ms
129,408 KB |
testcase_15 | AC | 287 ms
131,456 KB |
testcase_16 | AC | 203 ms
123,904 KB |
testcase_17 | AC | 161 ms
121,600 KB |
testcase_18 | AC | 370 ms
137,648 KB |
testcase_19 | AC | 341 ms
137,640 KB |
testcase_20 | AC | 350 ms
137,648 KB |
testcase_21 | AC | 355 ms
137,668 KB |
testcase_22 | AC | 337 ms
137,668 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | AC | 255 ms
128,516 KB |
testcase_37 | WA | - |
testcase_38 | AC | 179 ms
122,240 KB |
testcase_39 | AC | 183 ms
122,368 KB |
testcase_40 | AC | 178 ms
121,984 KB |
testcase_41 | AC | 176 ms
122,240 KB |
testcase_42 | AC | 177 ms
122,240 KB |
testcase_43 | AC | 168 ms
135,164 KB |
testcase_44 | AC | 141 ms
126,392 KB |
testcase_45 | WA | - |
testcase_46 | AC | 90 ms
114,156 KB |
testcase_47 | AC | 77 ms
107,776 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef signed long long ll; #define _P(...) (void)printf(__VA_ARGS__) #define FOR(x,to) for(x=0;x<(to);x++) #define FORR(x,arr) for(auto& x:arr) #define FORR2(x,y,arr) for(auto& [x,y]:arr) #define ALL(a) (a.begin()),(a.end()) #define ZERO(a) memset(a,0,sizeof(a)) #define MINUS(a) memset(a,0xff,sizeof(a)) template<class T> bool chmax(T &a, const T &b) { if(a<b){a=b;return 1;}return 0;} template<class T> bool chmin(T &a, const T &b) { if(a>b){a=b;return 1;}return 0;} //------------------------------------------------------- int N,M; vector<vector<int>> E[202020]; vector<int> RE[202020]; int reach[202020]; class SCC { public: static const int MV = 2025000; vector<vector<int> > SC; int NV,GR[MV]; private: vector<int> E[MV], RE[MV], NUM; int vis[MV]; public: void init(int NV) { this->NV=NV; for(int i=0;i<NV;i++) { E[i].clear(); RE[i].clear();}} void add_edge(int x,int y) { E[x].push_back(y); RE[y].push_back(x); } void dfs(int cu) { vis[cu]=1; for(int i=0;i<E[cu].size();i++) if(!vis[E[cu][i]]) dfs(E[cu][i]); NUM.push_back(cu); } void revdfs(int cu, int ind) { int i; vis[cu]=1; GR[cu]=ind; SC[ind].push_back(cu); FOR(i,RE[cu].size()) if(!vis[RE[cu][i]]) revdfs(RE[cu][i],ind);} void scc() { int c=0,i; SC.clear(); SC.resize(NV); NUM.clear(); assert(NV); FOR(i,NV) vis[i]=0; FOR(i,NV) if(!vis[i]) dfs(i); FOR(i,NV) vis[i]=0; for(int i=NUM.size()-1;i>=0;i--) if(!vis[NUM[i]]){ SC[c].clear(); revdfs(NUM[i],c); sort(SC[c].begin(),SC[c].end()); c++; } SC.resize(c); } }; SCC scc; ll num[202020]; ll sum[202020]; int in[202020]; const ll mo=1000000007; void solve() { int i,j,k,l,r,x,y; string s; cin>>N>>M; scc.init(N+1); FOR(i,M) { cin>>x>>y>>j>>l; E[x].push_back({y,j,l}); RE[y].push_back(x); scc.add_edge(x,y); } queue<int> Q; reach[N]=1; Q.push(N); while(Q.size()) { x=Q.front(); Q.pop(); FORR(e,RE[x]) if(reach[e]==0) { reach[e]=1; Q.push(e); } } scc.scc(); FOR(i,N) if(reach[i]&&scc.SC[scc.GR[i]].size()>1) { cout<<"INF"<<endl; } if(reach[0]==0) return _P("0\n"); FOR(i,N+1) { FORR(e,E[i]) if(reach[i]&&reach[e[0]]) in[e[0]]++; } FOR(i,N+1) if(reach[i]&&in[i]==0) Q.push(i); num[0]=1; sum[0]=0; while(Q.size()) { x=Q.front(); Q.pop(); FORR(e,E[x]) if(reach[e[0]]) { (num[e[0]]+=num[x]*e[2])%=mo; (sum[e[0]]+=e[2]*(sum[x]+num[x]*e[1]%mo))%=mo; in[e[0]]--; if(in[e[0]]==0) Q.push(e[0]); } } cout<<sum[N]<<endl; } int main(int argc,char** argv){ string s;int i; if(argc==1) ios::sync_with_stdio(false), cin.tie(0); FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin); cout.tie(0); solve(); return 0; }