結果

問題 No.119 旅行のツアーの問題
ユーザー momoyuumomoyuu
提出日時 2022-10-01 00:04:04
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 2,996 bytes
コンパイル時間 3,223 ms
コンパイル使用メモリ 254,232 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-08-24 18:06:10
合計ジャッジ時間 4,385 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 AC 2 ms
4,376 KB
testcase_05 AC 2 ms
4,376 KB
testcase_06 AC 2 ms
4,376 KB
testcase_07 AC 1 ms
4,376 KB
testcase_08 AC 1 ms
4,380 KB
testcase_09 AC 1 ms
4,380 KB
testcase_10 AC 2 ms
4,376 KB
testcase_11 AC 1 ms
4,380 KB
testcase_12 AC 2 ms
4,376 KB
testcase_13 AC 2 ms
4,376 KB
testcase_14 AC 2 ms
4,380 KB
testcase_15 AC 1 ms
4,376 KB
testcase_16 AC 2 ms
4,376 KB
testcase_17 AC 1 ms
4,376 KB
testcase_18 AC 1 ms
4,380 KB
testcase_19 AC 2 ms
4,380 KB
testcase_20 AC 1 ms
4,376 KB
testcase_21 AC 2 ms
4,376 KB
testcase_22 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 ll INF = (T)1e12;
    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;
    cin>>n;
    graph<ll> g(2*n+2);
    ll now = 0;
    rep(i,0,n){
        ll b,c;
        ll tmp;
        cin>>b>>c;
        if(b>c){
            now += b;
            tmp = b;
            b -= c;
            g.addedge(i+n,2*n+1,b);
        }else{
            now += c;
            tmp = c;
            c -= b;
            g.addedge(2*n,i,c);
        }
        g.addedge(i,i+n,tmp);
    }
    int m;
    cin>>m;
    ll inf = (ll)1e12;
    rep(i,0,m){
        int a,b;
        cin>>a>>b;
        g.addedge(b+n,a,inf);
    }
    FordFulkerson<ll> f;
    ll aa = f.max_flow(g,2*n,2*n+1);
    print(now-aa);

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