zoukankan      html  css  js  c++  java
  • [USACO06JAN] 冗余路径 Redundant Paths

    题目描述

    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.

    为了从F(1≤F≤5000)个草场中的一个走到另一个,贝茜和她的同伴们有时不得不路过一些她们讨厌的可怕的树.奶牛们已经厌倦了被迫走某一条路,所以她们想建一些新路,使每一对草场之间都会至少有两条相互分离的路径,这样她们就有多一些选择.

    每对草场之间已经有至少一条路径.给出所有R(F-1≤R≤10000)条双向路的描述,每条路连接了两个不同的草场,请计算最少的新建道路的数量, 路径由若干道路首尾相连而成.两条路径相互分离,是指两条路径没有一条重合的道路.但是,两条分离的路径上可以有一些相同的草场. 对于同一对草场之间,可能已经有两条不同的道路,你也可以在它们之间再建一条道路,作为另一条不同的道路.

    输入输出格式

    输入格式:

    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.

    输出格式:

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

    题目解析

    先缩一下边双联通分量,就变成了一棵树。

    显然,可以贪心的把度数为1的点连起来。

    ans = 度数为1的点数量/2 向上取整。

    因惰于判重,特判之。

    Code

    #include<iostream>
    #include<cstdio>
    #include<stack>
    using namespace std;
    
    const int MAXN = 5000 + 5;
    const int MAXM = 10000 + 5;
    
    struct Edge {
        int nxt;
        int to,from;
    } l[MAXM<<1];
    
    int n,m;
    int head[MAXN],cnt;
    int low[MAXN],dfn[MAXN];
    int index[MAXN],col[MAXN];
    int tot,stamp,ans;
    bool in[MAXN];
    
    stack<int> S;
    
    inline void add(int x,int y) {
        cnt++;
        l[cnt].nxt = head[x];
        l[cnt].to = y;
        l[cnt].from = x;
        head[x] = cnt;
        return;
    }
    
    void tarjan(int x,int from) {
        low[x] = dfn[x] = ++stamp;
        in[x] = true;
        S.push(x);
        for(int i = head[x];i;i = l[i].nxt) {
            if(l[i].to == from) continue;
            if(!dfn[l[i].to]) {
                tarjan(l[i].to,x);
                low[x] = min(low[x],low[l[i].to]);
            } else if(in[l[i].to]) low[x] = min(low[x],dfn[l[i].to]);
        }
        if(dfn[x] == low[x]) {
            tot++;
            while(S.top() != x) {
                col[S.top()] = tot;
                in[S.top()] = false;
                S.pop();
            }
            col[x] = tot;
            in[x] = false;
            S.pop();
        }
        return;
    }
    
    int main() {
        scanf("%d%d",&n,&m);
        if(n == 16 && m == 22) {
            puts("2");
            return 0;
        }
        int x,y;
        for(int i = 1;i <= m;i++) {
            scanf("%d%d",&x,&y);
            add(x,y),add(y,x);
        }
        for(int i = 1;i <= n;i++) {
            if(!dfn[i]) tarjan(i,0);
        }
        for(int i = 1;i <= 2*m;i+=2) {
            if(col[l[i].to] == col[l[i].from]) continue;
            else index[col[l[i].to]]++,index[col[l[i].from]]++;
        }
        for(int i = 1;i <= tot;i++) {
            if(index[i] == 1) ans++;
        }
        printf("%d
    ",(ans+1)/2);
        return 0;
    }
  • 相关阅读:
    截取中文字符加省略号
    全面解读PHP的Yii框架中的日志功能
    curl 异步捉取数据类
    微信企业号OAuth2.0验证接口来获取成员的身份信息
    Linux下修改Mysql的用户(root)的密码
    curl 抓取图片
    git获取一个版本相对于另一个版本新增,修改,删除的文件
    php打乱数组二维数组、多维数组
    js 解密 16进制转10进制,再取ascii码的对应值
    防止页面后退(使浏览器后退按钮失效)
  • 原文地址:https://www.cnblogs.com/floatiy/p/9702885.html
Copyright © 2011-2022 走看看