日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

POJ3177 Redundant Paths

發布時間:2023/12/3 编程问答 30 豆豆
生活随笔 收集整理的這篇文章主要介紹了 POJ3177 Redundant Paths 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

POJ3177 Redundant Paths

文章目錄

    • Description
    • 題意:
    • 題解:
    • 代碼:

Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 21945 Accepted: 9056

Description

In order to get from one of the F (1 <= F <= 5,000) grazing fields
(which are numbered 1…F) to another field, Bessie and the rest of the
herd are forced to cross near the Tree of Rotten Apples. The cows are
now tired of often being forced to take a particular path and want to
build some new paths so that they will always have a choice of at
least two separate routes between any pair of fields. They currently
have at least one route between each pair of fields and want to have
at least two. Of course, they can only travel on Official Paths when
they move from one field to another.

Given a description of the current set of R (F-1 <= R <= 10,000) paths
that each connect exactly two different fields, determine the minimum
number of new paths (each of which connects exactly two fields) that
must be built so that there are at least two separate routes between
any pair of fields. Routes are considered separate if they use none of
the same paths, even if they visit the same intermediate field along
the way.

There might already be more than one paths between the same pair of
fields, and you may also build a new path that connects the same
fields as some other path.

Input

Line 1: Two space-separated integers: F and R

Lines 2…R+1: Each line contains two space-separated integers which
are the fields at the endpoints of some path.

Output

Line 1: A single integer that is the number of new paths that must be
built.

Sample Input

7 7 1 2 2 3 3 4 2 5 4 5 5 6 5 7

Sample Output

2

Hint

Explanation of the sample:

One visualization of the paths is: 1 2 3 ±–±--+
| |
| | 6 ±–±--+ 4
/ 5
/
/ 7 + Building new paths from 1 to 6 and from 4 to 7 satisfies the conditions. 1 2 3 ±–±--+ : | | : | |
6 ±–±--+ 4
/ 5 :
/ :
/ : 7 + - - - - Check some of the routes: 1 – 2: 1 –> 2 and 1 –> 6 –> 5 –> 2 1 – 4: 1 –> 2 –> 3 –> 4 and 1 –> 6 –> 5 –> 4 3 – 7: 3
–> 4 –> 7 and 3 –> 2 –> 5 –> 7 Every pair of fields is, in fact,
connected by two routes.

It’s possible that adding some other path will also solve the problem
(like one from 6 to 7). Adding two paths, however, is the minimum.

題意:

n個點,m個邊,問再添加多少邊可以使得任意兩點有兩條路徑(且不可重復)

題解:

如果任意兩點至少存在兩條邊不重復路徑,則稱該圖為邊雙連通的。
我們可以用Tarjan來求出每個邊雙聯通分量,對于同一個邊雙連通分量的點之間都至少有兩條路徑,但是不同之間只會有一條路徑。
所以我們對每個邊雙連通分量進行縮點,就可以得到一個樹,要使這個無根數變成邊雙聯通圖,我們要先看看樹中誰需要連線,沒錯就是葉子節點,如果我們將所有葉子節點都消滅那不就行了,所以至少要添加(葉子節點數+1)/2條邊
可以結合圖分析一下(圖中為題目給的樣例)

代碼:

代碼參考

#include <iostream> #include <cstdio> #include <algorithm> #include <cstring> using namespace std; typedef long long LL; const int INF = 2e9; const LL LNF = 9e18; const int MOD = 1e9+7; const int MAXN = 5e3+10;struct Edge {int to, next;bool cut; }edge[MAXN<<2]; int head[MAXN], tot;int index, dfn[MAXN], low[MAXN]; int block, belong[MAXN]; int top, Stack[MAXN], instack[MAXN]; int degree[MAXN];void addedge(int u, int v) {edge[tot].to = v;edge[tot].cut = false;edge[tot].next = head[u];head[u] = tot++; }void Tarjan(int u, int pre) {low[u] = dfn[u] = ++index;Stack[top++] = u;instack[u] = true;for(int i = head[u]; i!=-1; i = edge[i].next){int v = edge[i].to;if(v==pre) continue;if(!dfn[v]){Tarjan(v, u);low[u] = min(low[u], low[v]);if(low[v]>dfn[u])//當前邊i所連接的點為葉子節點 {edge[i].cut = true;edge[i^1].cut = true;//標記兩次 }}else if(instack[v])low[u] = min(low[u], dfn[v]);}if(low[u]==dfn[u]){block++;int v;do{v = Stack[--top];instack[v] = false;belong[v] = block;}while(v!=u);} }void init() {tot = 0;memset(head,-1,sizeof(head));index = 0;memset(dfn,0,sizeof(dfn));memset(low,0,sizeof(low));block = top = 0;memset(instack,0,sizeof(instack));memset(degree,0,sizeof(degree)); }int main() {int n, m;while(scanf("%d%d",&n,&m)!=EOF){init();for(int i = 1; i<=m; i++){int u, v;scanf("%d%d",&u,&v);addedge(u, v);addedge(v,u);}Tarjan(1, 1);for(int u = 1; u<=n; u++)for(int i = head[u]; i!=-1; i = edge[i].next)if(edge[i].cut) //不需要兩端都加,因為一條割邊被標記了兩次。一次正好對應一個端點。degree[belong[u]]++;//求各點的度數 int leaf = 0;for(int i = 1; i<=block; i++)if(degree[i]==1) leaf++;printf("%d\n", (leaf+1)/2);} }

總結

以上是生活随笔為你收集整理的POJ3177 Redundant Paths的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。