結果
問題 | No.1301 Strange Graph Shortest Path |
ユーザー |
|
提出日時 | 2020-11-27 21:56:41 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 198 ms / 3,000 ms |
コード長 | 4,400 bytes |
コンパイル時間 | 2,555 ms |
コンパイル使用メモリ | 207,664 KB |
最終ジャッジ日時 | 2025-01-16 07:09:47 |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 33 |
ソースコード
//@formatter:off#include<bits/stdc++.h>#define rep(i,n) for (int i = 0; i < int(n); ++i)#define rrep(i,n) for (int i = int(n)-1; i >= 0; i--)#define rep2(i,s,n) for (int i = int(s); i < int(n); ++i)#define all(a) a.begin(),a.end()#define rall(a) a.rbegin(),a.rend()#define pb push_back#define eb emplace_back#define vi vector<int>#define vvi vector<vector<int>>#define vl vector<ll>#define vvl vector<vector<ll>>#define vd vector<double>#define vvd vector<vector<double>>#define vs vector<string>#define vc vector<char>#define vvc vector<vector<char>>#define vb vector<bool>#define vvb vector<vector<bool>>#define vp vector<P>#define vvp vector<vector<P>>using namespace std;using ll = long long;using P = pair<int,int>;using LP = pair<ll,ll>;template<class S,class T> istream& operator>>(istream &is,pair<S,T> &p) { return is >> p.first >> p.second; }template<class S,class T> ostream& operator<<(ostream &os,const pair<S,T> &p) { return os<<'{'<<p.first<<","<<p.second<<'}'; }template<class T> istream& operator>>(istream &is,vector<T> &v) { for(T &t:v){is>>t;} return is; }template<class T> ostream& operator<<(ostream &os,const vector<T> &v) { os<<'[';rep(i,v.size())os<<v[i]<<(i==int(v.size()-1)?"":","); return os<<']';}void Yes(bool b) { cout << (b ? "Yes" : "No") << '\n'; }void YES(bool b) { cout << (b ? "YES" : "NO") << '\n'; }template<class T> void fin(T a) { cout << a << endl; exit(0); }template<class T> bool chmin(T& a,T b) {if(a > b){a = b; return true;} return false;}template<class T> bool chmax(T& a,T b) {if(a < b){a = b; return true;} return false;}const int inf = 1001001001;const ll linf = 1001001001001001001;//@formatter:ontemplate<typename T>class Mincostflow {using TP = pair<T, int>;struct edge {int to, cap, rev;T cost;edge(int to, int cap, T cost, int rev) : to(to), cap(cap), cost(cost), rev(rev) {}};T tinf;int n;vector<vector<edge>> G;vector<T> pot, dist;vi prevv, preve;// potentialvoid tinf_init(int x) { tinf = inf; }void tinf_init(ll x) { tinf = linf; }public:explicit Mincostflow(int n) : n(n), G(n), pot(n), dist(n), prevv(n), preve(n) {T x = 0;tinf_init(x);}void add_edge(int from, int to, T cap, int cost) {G[from].eb(to, cap, cost, G[to].size());G[to].eb(from, 0, -cost, G[from].size() - 1);}// return -1 if impossible// this must not be called more than onceT min_cost_flow(int s, int t, int f) {T res = 0;pot.assign(n, 0);while (f > 0) {// use dijkstra to update potpriority_queue<TP, vector<TP>, greater<TP>> q;dist.assign(n, tinf);dist[s] = 0;q.emplace(0, s);while (!q.empty()) {T np = q.top().first;int v = q.top().second;q.pop();if (dist[v] < np) continue;rep(i, G[v].size()) {edge &e = G[v][i];if (e.cap > 0 && dist[e.to] > dist[v] + e.cost + pot[v] - pot[e.to]) {dist[e.to] = dist[v] + e.cost + pot[v] - pot[e.to];prevv[e.to] = v;preve[e.to] = i;q.emplace(dist[e.to], e.to);}}}if (dist[t] == tinf) return -1;rep(i, n) pot[i] += dist[i];int d = f;for (int v = t; v != s; v = prevv[v]) {chmin(d, G[prevv[v]][preve[v]].cap);}f -= d;res += d * pot[t];for (int v = t; v != s; v = prevv[v]) {edge &e = G[prevv[v]][preve[v]];e.cap -= d;G[v][e.rev].cap += d;}}return res;};};int main() {ios::sync_with_stdio(false);cin.tie(nullptr);cout.tie(nullptr);int n, m;cin >> n >> m;Mincostflow<ll> fl(n);rep(i, m) {int u, v, c, d;cin >> u >> v >> c >> d;u--;v--;fl.add_edge(u, v, 1, c);fl.add_edge(v, u, 1, c);fl.add_edge(u, v, 1, d);fl.add_edge(v, u, 1, d);}cout << fl.min_cost_flow(0, n - 1, 2) << endl;}