結果
| 問題 |
No.654 Air E869120
|
| コンテスト | |
| ユーザー |
ferin
|
| 提出日時 | 2019-10-18 13:11:18 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 15 ms / 2,000 ms |
| コード長 | 3,481 bytes |
| コンパイル時間 | 2,482 ms |
| コンパイル使用メモリ | 196,012 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-06-25 14:09:06 |
| 合計ジャッジ時間 | 3,670 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 5 |
| other | AC * 35 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using PII = pair<ll, ll>;
#define FOR(i, a, n) for (ll i = (ll)a; i < (ll)n; ++i)
#define REP(i, n) FOR(i, 0, n)
#define ALL(x) x.begin(), x.end()
template<typename T> void chmin(T &a, const T &b) { a = min(a, b); }
template<typename T> void chmax(T &a, const T &b) { a = max(a, b); }
struct FastIO {FastIO() { cin.tie(0); ios::sync_with_stdio(0); }}fastiofastio;
#ifdef DEBUG_
#include "../program_contest_library/memo/dump.hpp"
#else
#define dump(...)
#endif
const ll INF = 1LL<<60;
struct dinic {
struct edge{
int to;
ll cap;
int rev;
bool isrev;
};
vector<vector<edge>> G;
vector<int> level, iter;
void bfs(int s) {
level.assign(G.size(), -1);
queue<int> que;
level[s] = 0;
que.push(s);
while(que.size()) {
int v = que.front(); que.pop();
for(auto i: G[v]) {
if(i.cap > 0 && level[i.to] < 0) {
level[i.to] = level[v] + 1;
que.push(i.to);
}
}
}
}
ll dfs(int v, const int t, ll f) {
if(v == t) return f;
for(edge &e: G[v]) {
if(e.cap > 0 && level[v] < level[e.to]) {
ll d = dfs(e.to, t, min(f, e.cap));
if(d > 0) {
e.cap -= d;
G[e.to][e.rev].cap += d;
return d;
}
}
}
return 0;
}
dinic() {}
dinic(int n) : G(n), level(n), iter(n) {}
void add_edge(int from, int to, ll cap) {
G[from].push_back({to, cap, (int)G[to].size(), false});
G[to].push_back({from, 0, (int)G[from].size()-1, true});
}
ll max_flow(int s, int t) {
ll flow = 0;
while(1) {
bfs(s);
if(level[t] < 0) return flow;
iter.assign(G.size(), 0);
ll f;
while((f = dfs(s, t, INF)) > 0) flow += f;
}
}
friend ostream &operator <<(ostream& out, const dinic& a){
out << endl;
for(int i = 0; i < (int)a.G.size(); i++) {
for(auto &e : a.G[i]) {
if(e.isrev) continue;
auto &rev_e = a.G[e.to][e.rev];
out << i << "->" << e.to << " (flow: " << rev_e.cap << "/" << e.cap + rev_e.cap << ")" << endl;
}
}
return out;
}
};
int main(void) {
ll n, m, d;
cin >> n >> m >> d;
vector<ll> u(m), v(m), p(m), q(m), w(m);
vector<vector<ll>> t(n);
REP(i, m) {
cin >> u[i] >> v[i] >> p[i] >> q[i] >> w[i];
u[i]--, v[i]--;
q[i] += d;
t[u[i]].push_back(p[i]);
t[v[i]].push_back(q[i]);
}
if(t[n-1].size() == 0) {
cout << 0 << endl;
return 0;
}
ll idx = 0;
map<PII,ll> mp;
REP(i, n) {
sort(ALL(t[i]));
t[i].erase(unique(ALL(t[i])), t[i].end());
for(auto j: t[i]) mp[{i, j}] = idx++;
}
dump(mp);
dinic flow(idx);
REP(i, m) {
ll va = mp[{u[i], p[i]}], vb = mp[{v[i], q[i]}];
flow.add_edge(va, vb, w[i]);
}
REP(i, n) {
FOR(j, 1, t[i].size()) {
ll va = mp[{i, t[i][j-1]}], vb = mp[{i, t[i][j]}];
assert(va != vb);
flow.add_edge(va, vb, INF);
}
}
cout << flow.max_flow(0, idx-1) << endl;
// dump(flow);
return 0;
}
ferin