1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
| ##include "bits/stdc++.h"
using namespace std;
typedef long long ll; typedef long double ld; typedef pair<int, int> pii;
##define endl "\n" ##define pb push_back ##define mem(a, b) memset(a , b , sizeof(a)) ##define FOR(i, x, n) for(int i = x;i <= n; i++)
const int INF = 0x3f3f3f3f;
const double eps = 1e-6; const double PI = acos(-1); const double R = 0.57721566490153286060651209;
const int maxn = 1005;
struct Edge { int from, to, cap, flow; double cost;
Edge(int u, int v, int c, int f, double cc) : from(u), to(v), cap(c), flow(f), cost(cc) {} };
struct MCMF { int n, m; vector<Edge> edges; vector<int> G[maxn]; int inq[maxn]; double d[maxn]; int p[maxn]; int a[maxn]; void init(int n) { this->n = n; for (int i = 0; i <= n; ++i) G[i].clear(); edges.clear(); }
void addEdge(int from, int to, int cap, double cost) { edges.emplace_back(Edge(from, to, cap, 0, cost)); edges.emplace_back(Edge(to, from, 0, 0, -cost)); m = int(edges.size()); G[from].emplace_back(m - 2); G[to].emplace_back(m - 1); }
bool spfa(int s, int t, int &flow, double &cost) { for (int i = 1; i <= n; ++i) d[i] = INF; memset(inq, 0, sizeof(inq)); d[s] = 0; inq[s] = 1; p[s] = 0; queue<int> q; a[s] = INF; q.push(s); while (!q.empty()) { int u = q.front(); q.pop(); inq[u] = 0; for (int i = 0; i < int(G[u].size()); ++i) { Edge &e = edges[G[u][i]]; if (e.cap > e.flow && d[e.to] > d[u] + e.cost) { d[e.to] = d[u] + e.cost; p[e.to] = G[u][i]; a[e.to] = min(a[u], e.cap - e.flow); if (!inq[e.to]) { q.push(e.to); inq[e.to] = 1; } } } } if (d[t] == INF) return false; flow += a[t]; cost += d[t] * a[t]; for (int u = t; u != s; u = edges[p[u]].from) { edges[p[u]].flow += a[t]; edges[p[u] ^ 1].flow -= a[t]; } return true; }
int MincostMaxflow(int s, int t, double &cost) { int flow = 0; cost = 0; while (spfa(s, t, flow, cost)); return flow; } } mcmf;
double Dis(pair<double, double> a, pair<double, double> b) { return sqrt(((a.first - b.first) * (a.first - b.first)) + (a.second - b.second) * (a.second - b.second)); }
bool cmp(pair<double, double> a, pair<double, double> b) { return a.second == b.second ? a.first < b.first : a.second > b.second; }
void solve() { int n; scanf("%d",&n); mcmf.init(2 * n + 1); int s = 0, t = 2 * n + 1; pair<double, double> p[maxn]; for(int i = 1;i <= n; i++) { scanf("%lf%lf",&p[i].first, &p[i].second); mcmf.addEdge(s, n + i, 2, 0); mcmf.addEdge(i, t, 1, 0); } sort(p + 1, p + n + 1, cmp); if(p[1].second == p[2].second) { printf("-1\n"); return ; } for(int i = 1;i <= n; i++) { for(int j = i + 1;j <= n; j++) { if(p[i].second == p[j].second) continue; mcmf.addEdge(n + i, j, 1, Dis(p[i], p[j])); } } double mincost; auto ans = mcmf.MincostMaxflow(s, t, mincost); if(ans == n - 1) printf("%.8lf\n",mincost); else printf("-1\n"); }
signed main() { solve(); }
|