POJ 1944 Fiber Communications (枚舉 + 並查集 OR 線段樹)

題意

在一個有N(1 ≤ N ≤ 1,000)個點環形圖上有P(1 ≤ P ≤ 10,000)對點須要鏈接。鏈接只能鏈接環上相鄰的點。問至少須要鏈接幾條邊。

思路

突破點在於最後的結果必定不是一個環!因此咱們枚舉斷邊,則對於P個鏈接要求都只有惟一的方法:若是一個pair的兩個端點在斷點兩側,就分紅[0,left],[right,N];不然就是[left, right]。這裏區間以0開頭是要考慮left=一、right=N的狀況,至少得有個邊([0, 1])表示N連向1的狀況不是麼。 處理一個區間內相連狀況一般能夠用 線段樹。不過我在這裏用了下 並查集,也挺有意思的: 每一個並查集的父節點是它鏈接着的最右端的節點,而且維護一個數量集。而後鏈接[x, y]的時候直接找x的父節點(最右點),再挨個向右縮點直到y便可

代碼

  [cpp] #include <iostream> #include <cstdio> #include <cmath> #include <algorithm> #include <string> #include <cstring> #include <vector> #include <set> #include <stack> #include <queue> #define MID(x,y) ((x+y)/2) #define MEM(a,b) memset(a,b,sizeof(a)) #define REP(i, begin, end) for (int i = begin; i <= end; i ++) using namespace std; struct P{ int a, b; }p[10005]; const int MAXN = 1005; struct Disjoint_Sets{ struct Sets{ int father, num; }S[MAXN]; void Init(int n){ for (int i = 0; i <= n; i ++){ S[i].father = i; S[i].num = 1; } } int Father(int x){ if (S[x].father == x){ return x; } else{ S[x].father = Father(S[x].father); //Path compression return S[x].father; } } void Union(int x, int y){ int fx = Father(x), fy = Father(y); S[fy].num += S[fx].num; S[fx].father = fy; } }DS; void uni(int x, int y){ int xx = DS.Father(x); while(DS.Father(xx) != DS.Father(y)){ DS.Union(xx, xx+1); xx = DS.Father(xx); } } int main(){ //freopen("test.in", "r", stdin); //freopen("test.out", "w", stdout); int n, m; scanf("%d %d", &n, &m); for (int i = 0; i < m; i ++){ scanf("%d %d", &p[i].a, &p[i].b); if (p[i].b < p[i].a) swap(p[i].b, p[i].a); } int res = 0x3fffffff; for (int l = 1; l <= n; l ++){ DS.Init(n); for (int i = 0; i < m; i ++){ if (p[i].a <= l && p[i].b >= (l+1)%n){ uni(0, p[i].a); uni(p[i].b, n); } else uni(p[i].a, p[i].b); } int sum = 0; bool vis[1005] = {0}; for (int i = 1; i <= n; i ++){ if (!vis[DS.Father(i)] && DS.S[DS.Father(i)].num > 1){ sum += DS.S[DS.Father(i)].num - 1; vis[DS.Father(i)] = 1; } } res = min(res, sum); } printf("%d\n", res); return 0; } [/cpp]
相關文章
相關標籤/搜索