結果
| 問題 |
No.119 旅行のツアーの問題
|
| コンテスト | |
| ユーザー |
🍮かんプリン
|
| 提出日時 | 2020-10-20 01:17:40 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 5,000 ms |
| コード長 | 2,778 bytes |
| コンパイル時間 | 1,596 ms |
| コンパイル使用メモリ | 179,220 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-07-21 08:12:48 |
| 合計ジャッジ時間 | 2,433 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 19 |
ソースコード
/**
* @FileName a.cpp
* @Author kanpurin
* @Created 2020.10.20 01:17:36
**/
#include "bits/stdc++.h"
using namespace std;
typedef long long ll;
struct Dinic {
private:
struct edge {
int to;
ll cap;
int rev;
bool isrev;
int idx;
};
vector< vector< edge > > graph;
vector< int > min_cost, iter;
bool bfs(int s, int t) {
min_cost.assign(graph.size(), -1);
queue< int > que;
min_cost[s] = 0;
que.push(s);
while (!que.empty() && min_cost[t] == -1) {
int p = que.front();
que.pop();
for (auto &e : graph[p]) {
if (e.cap > 0 && min_cost[e.to] == -1) {
min_cost[e.to] = min_cost[p] + 1;
que.push(e.to);
}
}
}
return min_cost[t] != -1;
}
ll dfs(int idx, const int t, ll flow) {
if (idx == t) return flow;
for (int &i = iter[idx]; i < graph[idx].size(); i++) {
edge &e = graph[idx][i];
if (e.cap > 0 && min_cost[idx] < min_cost[e.to]) {
ll d = dfs(e.to, t, min(flow, e.cap));
if (d > 0) {
e.cap -= d;
graph[e.to][e.rev].cap += d;
return d;
}
}
}
return 0;
}
public:
Dinic(int V) : graph(V) {}
void add_edge(int from, int to, ll cap, int idx = -1) {
graph[from].push_back({to, cap, (int)graph[to].size(), false, idx});
graph[to].push_back({from, 0, (int)graph[from].size() - 1, true, idx});
}
ll max_flow(int s, int t) {
ll flow = 0;
while (bfs(s, t)) {
iter.assign(graph.size(), 0);
ll f = 0;
while ((f = dfs(s, t, 1e9 + 6)) > 0) flow += f;
}
return flow;
}
void output() {
for (int i = 0; i < graph.size(); i++) {
for (auto &e : graph[i]) {
if (e.isrev) continue;
auto &rev_e = graph[e.to][e.rev];
cout << i << "->" << e.to << " (flow: " << rev_e.cap << "/" << e.cap + rev_e.cap << ")" << endl;
}
}
}
};
int main() {
int n;cin >> n;
Dinic g(n*2+2);
int s = 2*n;
int t = 2*n+1;
ll BASE = 100;
ll ans = BASE * n;
for (int i = 0; i < n; i++) {
int b,c;cin >> b >> c;
g.add_edge(s,i,BASE-c);
g.add_edge(i,i+n,BASE);
g.add_edge(i+n,t,BASE-b);
}
int m;cin >> m;
constexpr long long LLINF = 1e18 + 1;
for (int i = 0; i < m; i++) {
int d,e;cin >> d >> e;
g.add_edge(d+n,e,LLINF);
}
ans -= g.max_flow(s,t);
cout << ans << endl;
return 0;
}
🍮かんプリン