zoukankan      html  css  js  c++  java
  • HDU 3849 无向图求桥

    By Recognizing These Guys, We Find Social Networks Useful

    Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 125536/65536 K (Java/Others)
    Total Submission(s): 2563    Accepted Submission(s): 671


    Problem Description
    Social Network is popular these days.The Network helps us know about those guys who we are following intensely and makes us keep up our pace with the trend of modern times.
    But how?
    By what method can we know the infomation we wanna?In some websites,maybe Renren,based on social network,we mostly get the infomation by some relations with those "popular leaders".It seems that they know every lately news and are always online.They are alway publishing breaking news and by our relations with them we are informed of "almost everything".
    (Aha,"almost everything",what an impulsive society!)
    Now,it's time to know what our problem is.We want to know which are the key relations make us related with other ones in the social network.
    Well,what is the so-called key relation?
    It means if the relation is cancelled or does not exist anymore,we will permanently lose the relations with some guys in the social network.Apparently,we don't wanna lose relations with those guys.We must know which are these key relations so that we can maintain these relations better.
    We will give you a relation description map and you should find the key relations in it.
    We all know that the relation bewteen two guys is mutual,because this relation description map doesn't describe the relations in twitter or google+.For example,in the situation of this problem,if I know you,you know me,too.
     
    Input
    The input is a relation description map.
    In the first line,an integer t,represents the number of cases(t <= 5).
    In the second line,an integer n,represents the number of guys(1 <= n <= 10000) and an integer m,represents the number of relations between those guys(0 <= m <= 100000).
    From the second to the (m + 1)the line,in each line,there are two strings A and B(1 <= length[a],length[b] <= 15,assuming that only lowercase letters exist).
    We guanrantee that in the relation description map,no one has relations with himself(herself),and there won't be identical relations(namely,if "aaa bbb" has already exists in one line,in the following lines,there won't be any more "aaa bbb" or "bbb aaa").
    We won't guarantee that all these guys have relations with each other(no matter directly or indirectly),so of course,maybe there are no key relations in the relation description map.
     
    Output
    In the first line,output an integer n,represents the number of key relations in the relation description map.
    From the second line to the (n + 1)th line,output these key relations according to the order and format of the input.
     
    Sample Input
    1 4 4 saerdna aswmtjdsj aswmtjdsj mabodx mabodx biribiri aswmtjdsj biribiri
     
    Sample Output
    1 saerdna aswmtjdsj
     
    Source
     
    Recommend
    chenyongfu
     1 #include<iostream>
     2 #include<cstdio>
     3 #include<cstring>
     4 #include<algorithm>
     5 #include<vector>
     6 #include<map>
     7 #include<string>
     8 using namespace std;
     9 const int maxn=100007;
    10 struct node
    11 {
    12     int from,to;
    13 };
    14 node edge[100007*2];
    15 int next1[100007*2],first[maxn],pre[maxn],top;
    16 int n,m,sum,ans[maxn],anstop;
    17 void addedge(int u,int v)
    18 {
    19     edge[sum].from=u;edge[sum].to=v;
    20     next1[sum]=first[u];first[u]=sum;sum++;
    21     edge[sum].from=v;edge[sum].to=u;
    22     next1[sum]=first[v];first[v]=sum;sum++;
    23 }
    24 int tarjain(int u,int fa)
    25 {
    26     int lowu=pre[u]=top++,child=0;
    27     for(int i=first[u];i!=-1;i=next1[i])
    28     {
    29         int v=edge[i].to;
    30         if(!pre[v]){
    31             child++;
    32             int lowv=tarjain(v,u);
    33             lowu=min(lowv,lowu);
    34             if(pre[u]<lowv){
    35                 ans[anstop++]=i;
    36             }
    37         }
    38         else if(pre[v]<lowu&&v!=fa){
    39             lowu=min(lowu,pre[v]);
    40         }
    41     }
    42     return lowu;
    43 }
    44 int main()
    45 {
    46     ios::sync_with_stdio(false);
    47     int t;string s1,s2;int cnt;
    48     cin>>t;
    49     while(t--){
    50         memset(next1,-1,sizeof(next1));
    51         memset(first,-1,sizeof(first));
    52         memset(pre,0,sizeof(pre));
    53         map<string,int> mp1;
    54         map<int,string> mp2;
    55         cin>>n>>m;
    56         cnt=1;anstop=0,sum=0;
    57         for(int i=1;i<=m;i++)
    58         {
    59             cin>>s1>>s2;
    60             if(mp1[s1]==0) mp1[s1]=cnt,mp2[cnt]=s1,cnt++;
    61             if(mp1[s2]==0) mp1[s2]=cnt,mp2[cnt]=s2,cnt++;
    62             addedge(mp1[s1],mp1[s2]);
    63         }
    64         top=1;
    65         tarjain(1,-1);
    66         bool flag=1;
    67         for(int i=1;i<=n;i++)
    68         {
    69             if(!pre[i]) flag=0;
    70         }
    71         if(!flag){cout<<"0"<<endl;continue;}
    72         sort(ans,ans+anstop);
    73         cout<<anstop<<endl;
    74         int k;
    75         for(int i=0;i<anstop;i++)
    76         {
    77             k=ans[i];
    78             k=min(k,k^1);
    79             cout<<mp2[edge[k].from].c_str()<<" "<<mp2[edge[k].to].c_str()<<endl;
    80         }
    81     }
    82     return 0;
    83 }
  • 相关阅读:
    sublime c/c++ 环境
    sublime编写markdownm
    第八次课程作业
    第七次课程作业
    第六次作业
    第五次课程作业
    Arithmatic项目修改总结
    第四次课程作业
    第三次课程作业
    课程作业二
  • 原文地址:https://www.cnblogs.com/codeyuan/p/4383606.html
Copyright © 2011-2022 走看看