結果

問題 No.654 Air E869120
ユーザー momoyuu
提出日時 2022-09-30 22:50:41
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 144 ms / 2,000 ms
コード長 3,001 bytes
コンパイル時間 4,110 ms
コンパイル使用メモリ 256,624 KB
実行使用メモリ 6,656 KB
最終ジャッジ日時 2024-12-23 00:34:34
合計ジャッジ時間 5,376 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 5
other AC * 35
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

using ll = long long;
using ull = unsigned long long;
using ld = long double;
template<class t> using vc = vector<t>;
template<class t> using vvc = vc<vc<t>>;
using pi = pair<int,int>;
using pl = pair<ll,ll>;
using vi = vc<int>;
using vvi = vvc<int>;
using vl = vc<ll>;
using vvl = vvc<ll>;

#define rep(i,a,b) for (int i = (int)(a); i < (int)(b); i++)
#define irep(i,a,b) for (int i = (int)(a); i > (int)(b); i--)
#define all(a) a.begin(),a.end()
#define print(n) cout << n << '\n'
#define pritn(n) print(n)
#define printv(n,a) {copy(all(n),ostream_iterator<a>(cout," ")); cout<<"\n";}
#define printvv(n,a) {for(auto itr:n) printv(itr,a);}
#define rup(a,b) (a+b-1)/b
#define input(A,N) rep(i,0,N) cin>>A[i]
#define chmax(a,b) a = max(a,b)
#define chmin(a,b) a = min(a,b)

template< typename T >
struct edge{
    int from,to,rev;
    T cost;
    /*
    *to:繋がってる先
    *cost:辺のコスト
    */
    edge(int from,int to,int rev,T cost):from(from),to(to),rev(rev),cost(cost){};
    edge &operator=(const int& x){
        to = x;
        return *this;
    }
};

template< typename T >
struct graph{
    int n;
    vector<vector<edge<T>>> e;
    graph(int n):n(n),e(n){}

    void addedge(int from,int to,T cost){
        e[from].emplace_back(from,to,(int)e[to].size(),cost);
        e[to].emplace_back(to,from,(int)e[from].size()-1,0);
    }

    vector<edge<T>> &operator[](int i) {
        return e[i];
    }
};

template< typename T >
struct FordFulkerson{
    const int INF = (T)1e9;
    vector<int> vis;

    FordFulkerson(){};

    T dfs(graph<T>&g,int ni,int t,T f){
        if(ni==t) return f;
        vis[ni] = 1;
        for(auto &e:g[ni]){
            if(vis[e.to]||e.cost<=0) continue;
            T d = dfs(g,e.to,t,min(f,e.cost));
            if(d>0){
                e.cost -= d;
                g[e.to][e.rev].cost += d;
                return d;
            }
        }
        return 0;
    }

    //start:s->to:t
    T max_flow(graph<T>&g,int s,int t){
        T flow = 0;
        while(1){
            vis.assign(g.n,0);
            T d = dfs(g,s,t,INF);
            if(d==0){
                return flow;
            }else{
                flow += d;
            }
        }
        return 0;
    }
};


int main(){
    cout << fixed << setprecision(15);
    
    int n,m;
    ll d;
    cin>>n>>m>>d;
    vi u(m),v(m);
    vl p(m),q(m),w(m);
    rep(i,0,m){
        cin>>u[i]>>v[i]>>p[i]>>q[i]>>w[i];
    }
    graph<ll> g(m+m+2);
    ll inf = (ll)1e15;
    rep(i,0,m){
        g.addedge(i,i+m,w[i]);
        if(u[i]!=1)continue;
        g.addedge(2*m,i,inf);
    }
    rep(i,0,m){
        if(v[i]!=n)continue;
        g.addedge(i+m,2*m+1,inf);
    }

    rep(i,0,m){
        rep(j,0,m){
            if(v[i]!=u[j])continue;
            if(q[i]+d>p[j])continue;
            g.addedge(i+m,j,inf);
        }
    }
    
    
    FordFulkerson<ll> f;
    print(f.max_flow(g,2*m,2*m+1));

    //system("pause");
    return 0;
}
0