結果

問題 No.654 Air E869120
ユーザー momoyuumomoyuu
提出日時 2022-09-30 22:50:41
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 3,001 bytes
コンパイル時間 3,201 ms
コンパイル使用メモリ 256,356 KB
実行使用メモリ 6,480 KB
最終ジャッジ日時 2023-08-24 16:25:40
合計ジャッジ時間 6,086 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 AC 2 ms
4,380 KB
testcase_05 AC 1 ms
4,376 KB
testcase_06 AC 2 ms
4,376 KB
testcase_07 AC 2 ms
4,380 KB
testcase_08 AC 1 ms
4,380 KB
testcase_09 AC 2 ms
4,376 KB
testcase_10 AC 135 ms
6,480 KB
testcase_11 AC 53 ms
5,624 KB
testcase_12 AC 93 ms
5,748 KB
testcase_13 AC 98 ms
5,756 KB
testcase_14 AC 29 ms
5,564 KB
testcase_15 AC 46 ms
6,220 KB
testcase_16 AC 10 ms
4,456 KB
testcase_17 AC 13 ms
4,520 KB
testcase_18 AC 9 ms
4,640 KB
testcase_19 AC 14 ms
4,404 KB
testcase_20 AC 6 ms
4,380 KB
testcase_21 AC 6 ms
4,376 KB
testcase_22 AC 6 ms
4,376 KB
testcase_23 AC 6 ms
4,380 KB
testcase_24 AC 6 ms
4,376 KB
testcase_25 AC 6 ms
4,380 KB
testcase_26 AC 5 ms
4,376 KB
testcase_27 AC 5 ms
4,380 KB
testcase_28 AC 5 ms
4,380 KB
testcase_29 AC 5 ms
4,376 KB
testcase_30 AC 4 ms
4,380 KB
testcase_31 AC 5 ms
4,376 KB
testcase_32 AC 4 ms
4,376 KB
testcase_33 AC 5 ms
4,376 KB
testcase_34 AC 4 ms
4,380 KB
testcase_35 AC 1 ms
4,376 KB
testcase_36 AC 1 ms
4,380 KB
testcase_37 AC 1 ms
4,376 KB
testcase_38 AC 1 ms
4,376 KB
testcase_39 AC 2 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

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