标签:air each pre import contain bsp too ant bottom
| Time Limit: 2000MS | Memory Limit: 65536K | |
| Total Submissions: 17383 | Accepted: 4660 |
Description
Input
Output
Sample Input
1 3 3 1 2 2 3 3 1
Sample Output
Yes
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
#include<cstdio>#include<cstring>#include<iostream>#include<string>#include<vector>#include<stack>#include<set>#include<algorithm>using namespace std;#define N 1002vector<int>Gra[N];stack<int>Sta;int map[N][N];int dfn[N],low[N],inStack[N],belong[N],Time,cnt;int inDegree[N];void init(){ Time = cnt = 0; memset(dfn,0,sizeof(dfn)); memset(low,0,sizeof(dfn)); memset(inStack,0,sizeof(inStack)); memset(inDegree,0,sizeof(inDegree)); memset(belong,0,sizeof(belong)); for(int i=0;i<N;i++) Gra[i].clear(); memset(map,0,sizeof(map)); while(!Sta.empty()) Sta.pop();}void Tarjan(int s){ dfn[s] = low[s] = ++Time; inStack[s] = 1; Sta.push(s); for(int i=0;i<Gra[s].size();i++) { int j = Gra[s][i]; if(dfn[j] == 0){ Tarjan(j); low[s] = min(low[s], low[j]); } else if(inStack[j] == 1){ low[s] = min(low[s], dfn[j]); } } if(dfn[s] == low[s]) { cnt ++; while(!Sta.empty()){ int temp = Sta.top(); Sta.pop(); inStack[temp] = 0; belong[temp] = cnt; if(temp == s) break; } } return;}void tsort(){ for(int k=0;k<cnt;k++){ int fuck = 0,pos; for(int i=1;i<=cnt;i++) { if(inDegree[i] == 0) { fuck ++; pos = i; } } if(fuck > 1){ printf("No\n"); return ; } inDegree[pos ] = -1; for(int i=1;i<=cnt;i++) { if(map[pos][i] == 1) inDegree[i]--; } } printf("Yes\n");}int main(){ int noc; cin>>noc; while(noc--) { init(); int n,m,x,y; scanf("%d%d",&n,&m); for(int i=0;i<m;i++) { scanf("%d%d",&x,&y); Gra[x].push_back(y); } for(int i=1;i<=n;i++) if(dfn[i] == 0) Tarjan(i); if(cnt == 1) { printf("Yes\n"); continue; } for(int i=1;i<=n;i++) { for(int j=0;j<Gra[i].size();j++) { int k = Gra[i][j]; if(belong[i]!=belong[k]){ if(map[belong[i]][belong[k]] == 0){ map[belong[i]][belong[k]] = 1; inDegree[belong[k]]++; } } } } for(int i=1;i<=cnt;i++) printf("%d %d\n",i,inDegree[i]); tsort(); }} |
标签:air each pre import contain bsp too ant bottom
原文地址:http://www.cnblogs.com/liwenchi/p/7259331.html