結果
問題 | No.654 Air E869120 |
ユーザー | kotatsugame |
提出日時 | 2020-10-13 10:12:06 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,857 bytes |
コンパイル時間 | 1,041 ms |
コンパイル使用メモリ | 86,680 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-20 18:23:48 |
合計ジャッジ時間 | 2,542 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 3 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 10 ms
5,376 KB |
testcase_11 | AC | 10 ms
5,376 KB |
testcase_12 | AC | 10 ms
5,376 KB |
testcase_13 | AC | 10 ms
5,376 KB |
testcase_14 | AC | 9 ms
5,376 KB |
testcase_15 | AC | 10 ms
5,376 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 6 ms
5,376 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 5 ms
5,376 KB |
testcase_26 | WA | - |
testcase_27 | AC | 5 ms
5,376 KB |
testcase_28 | WA | - |
testcase_29 | AC | 5 ms
5,376 KB |
testcase_30 | AC | 5 ms
5,376 KB |
testcase_31 | AC | 4 ms
5,376 KB |
testcase_32 | AC | 4 ms
5,376 KB |
testcase_33 | AC | 5 ms
5,376 KB |
testcase_34 | AC | 5 ms
5,376 KB |
testcase_35 | AC | 2 ms
5,376 KB |
testcase_36 | AC | 2 ms
5,376 KB |
testcase_37 | AC | 2 ms
5,376 KB |
testcase_38 | AC | 2 ms
5,376 KB |
testcase_39 | AC | 2 ms
5,376 KB |
コンパイルメッセージ
a.cpp:8:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
ソースコード
#line 1 "a.cpp" #include<iostream> #include<vector> #include<algorithm> using namespace std; #line 1 "/home/kotatsugame/library/graph/MF_Dinic.cpp" //Dinic O(EV^2) #line 3 "/home/kotatsugame/library/graph/MF_Dinic.cpp" #include<utility> #line 5 "/home/kotatsugame/library/graph/MF_Dinic.cpp" #include<queue> #include<limits> template<typename T> struct MF{ struct edge{ int to,rev; T cap; }; vector<vector<edge> >G; vector<int>level,iter; MF(int n_=0):G(n_),level(n_),iter(n_){} void add_edge(int from,int to,T cap) { G[from].push_back({to,(int)G[to].size(),cap}); G[to].push_back({from,(int)G[from].size()-1,0}); } T dfs(int u,int t,T f) { if(u==t)return f; for(;iter[u]<G[u].size();iter[u]++) { edge&e=G[u][iter[u]]; if(e.cap>0&&level[u]<level[e.to]) { T d=dfs(e.to,t,min(f,e.cap)); if(d>0) { e.cap-=d; G[e.to][e.rev].cap+=d; return d; } } } return 0; } T max_flow(int s,int t) { T ret=0; for(;;) { fill(level.begin(),level.end(),-1); queue<int>P; level[s]=0; P.push(s); while(!P.empty()) { int u=P.front();P.pop(); for(edge&e:G[u]) { if(e.cap>0&&level[e.to]<0) { level[e.to]=level[u]+1; P.push(e.to); } } } if(level[t]<0)return ret; fill(iter.begin(),iter.end(),0); for(T f;(f=dfs(s,t,numeric_limits<T>::max()))>0;)ret+=f; } } }; #line 6 "a.cpp" int N,M,D; int u[1000],v[1000],p[1000],q[1000],w[1000]; main() { cin>>N>>M>>D; MF<int>P(2*M+2); int st=2*M,go=2*M+1; for(int i=0;i<M;i++) { cin>>u[i]>>v[i]>>p[i]>>q[i]>>w[i]; u[i]--,v[i]--; P.add_edge(2*i,2*i+1,w[i]); if(u[i]==0)P.add_edge(st,2*i,w[i]); if(v[i]==N-1)P.add_edge(2*i+1,go,w[i]); } for(int i=0;i<M;i++)for(int j=0;j<M;j++)if(v[i]==u[j]&&q[i]+D<=p[j]) { P.add_edge(2*i+1,2*j,w[j]); } cout<<P.max_flow(st,go)<<endl; }