2017 Multi-University Training Contest - Team 9 1005&&HDU 6165 FFF at Valentine【强联通缩点+拓扑排序】

简介: FFF at Valentine Time Limit: 6000/3000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)Total Submission(s): 1060    Accepted Submission(...

FFF at Valentine

Time Limit: 6000/3000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)
Total Submission(s): 1060    Accepted Submission(s): 506


Problem Description

At Valentine's eve, Shylock and Lucar were enjoying their time as any other couples. Suddenly, LSH, Boss of FFF Group caught both of them, and locked them into two separate cells of the jail randomly. But as the saying goes: There is always a way out , the lovers made a bet with LSH: if either of them can reach the cell of the other one, then LSH has to let them go.
The jail is formed of several cells and each cell has some special portals connect to a specific cell. One can be transported to the connected cell by the portal, but be transported back is impossible. There will not be a portal connecting a cell and itself, and since the cost of a portal is pretty expensive, LSH would not tolerate the fact that two portals connect exactly the same two cells.
As an enthusiastic person of the FFF group, YOU are quit curious about whether the lovers can survive or not. So you get a map of the jail and decide to figure it out.
 

 

Input
Input starts with an integer T (T≤120), denoting the number of test cases.
For each case,
First line is two number n and m, the total number of cells and portals in the jail.(2≤n≤1000,m≤6000)
Then next m lines each contains two integer u and v, which indicates a portal from u to v.
 

 

Output
If the couple can survive, print “I love you my love and our love save us!”
Otherwise, print “Light my fire!”
 

 

Sample Input
3
5 5
1 2
2 3
2 4
3 5
4 5

3 3
1 2
2 3
3 1

5 5
1 2
2 3
3 1
3 4
4 5

 

Sample Output
Light my fire!
I love you my love and our love save us!
I love you my love and our love save us!

 

Source
分析:缩点为DAG,则如果在拓扑序中出现了有两个及以上入度为0的点则不合法
下面给出AC代码:
  1 #include <iostream>
  2 #include <bits/stdc++.h>
  3 using namespace std;
  4 const int MAXN=1010;
  5 const int MAXM=6010;
  6 struct Edge{
  7     int to,next;
  8 }edge[MAXM],edge2[MAXM];
  9 int head[MAXN],head2[MAXN],tot,tot2;
 10 int Low[MAXN],DFN[MAXN],Stack[MAXN],Belong[MAXN];
 11 int Index,top;
 12 int scc;
 13 bool Instack[MAXN];
 14 int num[MAXN];
 15 int in[MAXN],out[MAXN];
 16 void addedge(int u,int v){
 17     edge[tot].to=v;edge[tot].next=head[u];head[u]=tot++;
 18 }
 19 void addedge2(int u,int v){
 20     edge2[tot2].to=v;edge2[tot2].next=head2[u];head2[u]=tot2++;
 21 }
 22 void Tarjan(int u){
 23     int v;
 24     Low[u]=DFN[u]=++Index;
 25     Stack[top++]=u;
 26     Instack[u]=true;
 27     for(int i=head[u];i!=-1;i=edge[i].next){
 28         v=edge[i].to;
 29         if(!DFN[v]){
 30             Tarjan(v);
 31             if(Low[u]>Low[v])Low[u]=Low[v];
 32         }
 33         else if(Instack[v]&&Low[u]>DFN[v])
 34             Low[u]=DFN[v];
 35     }
 36     if(Low[u]==DFN[u]){
 37         scc++;
 38         do{
 39             v=Stack[--top];
 40             Instack[v]=false;
 41             Belong[v]=scc;
 42             num[scc]++;
 43         }
 44         while(v!=u);
 45     }
 46 }
 47 void solve(int N){
 48     memset(DFN,0,sizeof(DFN));
 49     memset(Instack,false,sizeof(Instack));
 50     memset(num,0,sizeof(num));
 51     Index=scc=top=0;
 52     for(int i=1;i<=N;i++){
 53         if(!DFN[i])
 54             Tarjan(i);
 55     }
 56 }
 57 
 58 bool map2[MAXN][MAXN];
 59 void build(int n){
 60     memset(map2,false,sizeof(map2));
 61     memset(in,0,sizeof(in));
 62     memset(out,0,sizeof(out));
 63     memset(head2,-1,sizeof(head2));tot2=0;
 64     for(int i=1;i<=n;i++){
 65         for(int j=head[i];j!=-1;j=edge[j].next){
 66             int v=edge[j].to;
 67             int a=Belong[i];
 68             int b=Belong[v];
 69             if(a==b)continue;
 70             if(!map2[a][b]){
 71                 addedge2(a,b);
 72                 map2[a][b]=true;
 73                 in[b]++;out[a]++;
 74             }
 75         }
 76     }
 77 }
 78 
 79 void init(){
 80     tot=0;
 81     memset(head,-1,sizeof(head));
 82 }
 83 
 84 bool Top(){
 85     queue<int >q;
 86     while(!q.empty())q.pop();
 87     for(int i=1;i<=scc;i++){
 88         if(in[i]==0)q.push(i);
 89     }
 90 
 91     while(!q.empty()){
 92         if(q.size()!=1)return false;
 93         int u=q.front();
 94         q.pop();
 95         for(int i=1;i<=scc;i++){
 96             if(map2[u][i]==true) {
 97                 in[i]--;
 98                 if(in[i]==0)q.push(i);
 99             }
100         }
101     }
102     return true;
103 }
104 
105 int n,m;
106 int main()
107 {
108     int T;
109     scanf("%d",&T);
110     while(T--){
111         scanf("%d%d",&n,&m);
112         init();
113         for(int i=0;i<m;i++){
114             int u,v;
115             scanf("%d%d",&u,&v);
116             addedge(u,v);
117         }
118         solve(n);
119         build(n);
120 
121         if(!Top()){printf("Light my fire!\n");}
122         else printf("I love you my love and our love save us!\n");
123     }
124 
125     return 0;
126 }

 

目录
相关文章
|
Java
HDU - 2018 Multi-University Training Contest 2 - 1010: Swaps and Inversions
HDU - 2018 Multi-University Training Contest 2 - 1010: Swaps and Inversions
77 0
|
Java
HDU - 2018 Multi-University Training Contest 2 - 1004: Game
HDU - 2018 Multi-University Training Contest 2 - 1004: Game
77 0
|
Java
HDU - 2018 Multi-University Training Contest 3 - 1012: Visual Cube
HDU - 2018 Multi-University Training Contest 3 - 1012: Visual Cube
105 0
HDU - 2018 Multi-University Training Contest 3 - 1012: Visual Cube
|
Java
HDU - 2018 Multi-University Training Contest 1 - 1001: Maximum Multiple
HDU - 2018 Multi-University Training Contest 1 - 1001: Maximum Multiple
71 0
|
Java
2017 Multi-University Training Contest - Team 9 1003&&HDU 6163 CSGO【计算几何】
CSGO Time Limit: 20000/10000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)Total Submission(s): 127    Accepted Submission(s): 20 Pro...
1384 0
|
Java
2017 Multi-University Training Contest - Team 9 1002&&HDU 6162 Ch’s gift【树链部分+线段树】
Ch’s gift Time Limit: 6000/3000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)Total Submission(s): 1354    Accepted Submission(s): 496 Problem Description Mr.
1269 0
2017 Multi-University Training Contest - Team 9 1004&&HDU 6164 Dying Light【数学+模拟】
Dying Light Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 131072/131072 K (Java/Others)Total Submission(s): 513    Accepted Submission(s): ...
1152 0
2017 Multi-University Training Contest - Team 9 1001&&HDU 6161 Big binary tree【树形dp+hash】
Big binary tree Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)Total Submission(s): 597    Accepted Submission(s)...
1167 0
2017 Multi-University Training Contest - Team 1 1003&&HDU 6035 Colorful Tree【树形dp】
Colorful Tree Time Limit: 6000/3000 MS (Java/Others)    Memory Limit: 131072/131072 K (Java/Others)Total Submission(s): 1539    Accepted Submission(s...
1301 0
|
Java 人工智能 BI
2017 Multi-University Training Contest - Team 1 1006&&HDU 6038 Function【DFS+数论】
Function Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 131072/131072 K (Java/Others)Total Submission(s): 652    Accepted Submission(s): 267...
1163 0