結果
問題 | No.654 Air E869120 |
ユーザー | ttttan2 |
提出日時 | 2019-09-25 16:45:53 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,049 bytes |
コンパイル時間 | 1,322 ms |
コンパイル使用メモリ | 162,088 KB |
実行使用メモリ | 101,368 KB |
最終ジャッジ日時 | 2024-09-22 08:27:51 |
合計ジャッジ時間 | 5,962 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 47 ms
101,060 KB |
testcase_01 | AC | 47 ms
100,932 KB |
testcase_02 | AC | 52 ms
100,992 KB |
testcase_03 | AC | 42 ms
100,992 KB |
testcase_04 | AC | 40 ms
100,992 KB |
testcase_05 | AC | 40 ms
101,084 KB |
testcase_06 | AC | 39 ms
101,084 KB |
testcase_07 | AC | 38 ms
100,960 KB |
testcase_08 | AC | 39 ms
101,084 KB |
testcase_09 | AC | 38 ms
100,992 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 40 ms
101,188 KB |
testcase_26 | AC | 40 ms
101,244 KB |
testcase_27 | AC | 39 ms
101,220 KB |
testcase_28 | AC | 41 ms
101,216 KB |
testcase_29 | AC | 41 ms
101,188 KB |
testcase_30 | AC | 38 ms
101,060 KB |
testcase_31 | AC | 38 ms
101,064 KB |
testcase_32 | AC | 39 ms
101,188 KB |
testcase_33 | AC | 38 ms
101,188 KB |
testcase_34 | AC | 38 ms
101,192 KB |
testcase_35 | AC | 38 ms
101,084 KB |
testcase_36 | AC | 38 ms
101,056 KB |
testcase_37 | AC | 38 ms
101,060 KB |
testcase_38 | AC | 37 ms
101,060 KB |
testcase_39 | AC | 39 ms
101,092 KB |
ソースコード
#include<bits/stdc++.h> //ios::sync_with_stdio(false);cin.tie(0); using namespace std; typedef long long ll; typedef unsigned long long ull; typedef pair<int,int> pii; typedef pair<pii,int> ppii; typedef pair<int,pii> pipi; typedef pair<ll,ll> pll; typedef pair<pll,ll> ppll; typedef pair<ll,pll> plpl; typedef tuple<ll,ll,ll> tl; ll mod=1000000007; ll mod2=998244353; ll mod3=1000003; ll mod4=998244853; ll inf=1000000000000000000; double pi=2*acos(0); #define rep(i,m,n) for(ll i=m;i<n;i++) #define rrep(i,n,m) for(ll i=n;i>=m;i--) int dh[4]={1,-1,0,0}; int dw[4]={0,0,1,-1}; int ddh[8]={-1,-1,-1,0,0,1,1,1}; int ddw[8]={-1,0,1,-1,1,-1,0,1}; ll lmax(ll a,ll b){ if(a<b)return b; else return a; } ll lmin(ll a,ll b){ if(a<b)return a; else return b; } ll gcd(ll a,ll b){ if(a<b)swap(a,b); if(b==0)return a; if(a%b==0)return b; return gcd(b,a%b); } ll Pow(ll n,ll k){ ll ret=1; ll now=n; while(k>0){ if(k&1)ret*=now; now*=now; k/=2; } return ret; } struct edge{ll to,cap,rev,st,go;}; vector<edge> G[4000010]; bool used[4000010]; void add_edge(ll from,ll to,ll cap,ll st,ll go){ G[from].push_back((edge){to,cap,(ll)G[to].size(),st,go}); G[to].push_back((edge){from,0,(ll)G[from].size()-1,0,1000000000000}); } ll dfs(ll v,ll t,ll f,ll ss){ if(v==t)return f; used[v]=true; rep(i,0,G[v].size()){ edge &e=G[v][i]; if(e.cap>0&&e.st>=ss){ ll d=dfs(e.to,t,min(f,e.cap),e.go); if(d>0){ e.cap-=d; G[e.to][e.rev].cap+=d; return d; } } } return 0; } ll max_flow(ll s,ll t){ ll f=0; for(;;){ memset(used,0,sizeof used); ll g=dfs(s,t,1000000000,0); if(g==0)return f; f+=g; } } int main(){ ios::sync_with_stdio(false);cin.tie(0); ll n,m,d;cin>>n>>m>>d; rep(i,0,m){ ll u,v,p,q,w;cin>>u>>v>>p>>q>>w; add_edge(u,v,w,p,q+d); } ll ans=max_flow(1,n); cout<<ans<<endl; }