ZOJ 3811 / 2014 牡丹江赛区网络赛 C. Untrusted Patrol bfs/dfs/并查集

Untrusted Patrol


Time Limit: 3 Seconds                                     Memory Limit: 65536 KB


Edward is a rich man. He owns a large factory for health drink production. As a matter of course, there is a large warehouse in the factory.

To ensure the safety of drinks, Edward hired a security man to patrol the warehouse. The warehouse has N piles of drinks and M passageways connected them (warehouse is not big enough). When the evening comes, the security man will start to patrol the warehouse following a path to check all piles of drinks.

Unfortunately, Edward is a suspicious man, so he sets sensors on K piles of the drinks. When the security man comes to check the drinks, the sensor will record a message. Because of the memory limit, the sensors can only record for the first time of the security man‘s visit.

After a peaceful evening, Edward gathered all messages ordered by recording time. He wants to know whether is possible that the security man has checked all piles of drinks. Can you help him?

The security man may start to patrol at any piles of drinks. It is guaranteed that the sensors work properly. However, Edward thinks the security man may not works as expected. For example, he may digs through walls, climb over piles, use some black magic to teleport to anywhere and so on.

Input

There are multiple test cases. The first line of input is an integer T indicates the number of test cases. For each test case:

The first line contains three integers N (1 <= N <= 100000), M (1 <= M <= 200000) and K (1 <= K <= N).

The next line contains K distinct integers indicating the indexes of piles (1-based) that have sensors installed. The following M lines, each line contains two integers Ai and Bi (1 <= Ai, Bi <= N) which indicates a bidirectional passageway connects piles Ai and Bi.

Then, there is an integer L (1 <= L <= K) indicating the number of messages gathered from all sensors. The next line contains L distinct integers. These are the indexes of piles where the messages came from (each is among the K integers above), ordered by recording time.

Output

For each test case, output "Yes" if the security man worked normally and has checked all piles of drinks, or "No" if not.

Sample Input

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

Sample Output

No
Yes

转自:http://blog.csdn.net/napoleon_acm/article/details/39124615

题目: LINK

给定一个无向图,n个点,  m条边,k个特殊点(有传感器),只有当第一次到达特殊点的时候才会发出信号,给出发出信号的序列,问是否存在这样的路径使得每个点至少遍历一次,而且特殊点第一次到达的顺序和和题目输入一样。  (1 <= N <= 100000), M (1 <= M <= 200000)  先特判 如果询问时输入的L<k, 那么直接No, 因为l<k肯定有传感器的点没有到达,不满足每个点都遍历一次。 先把第一个特殊点入队,遍历所有的可以到达的点(中途不经过其他特殊点),标记为可以到达。  之后判断第二个点是否可以从第一个点到达(是否被标记),如果不可以则No,否则遍历从第二个特殊点出发的可以到达的点(同样中途不经过剩余特殊点). ....... 依次处理完所有点即可. 如果前面的一个特殊点可以到达某个点,那么 他后面的特殊点一定也可以到达这些点,因为他可以回到前面的特殊点再走过去.

本题可用多种思路做,但是拍代码前一定要先分析好再开拍,不然,,,

可用方法:bfs、dfs、并查集。

吐血ac。。。

代码:

bfs:

  1 #include<iostream>
  2 #include<cstring>
  3 #include<cstdlib>
  4 #include<cstdio>
  5 #include<algorithm>
  6 #include<cmath>
  7 #include<queue>
  8 #include<map>
  9
 10 #define N 100005
 11 #define M 15
 12 #define mod 6
 13 #define mod2 100000000
 14 #define ll long long
 15 #define maxi(a,b) (a)>(b)? (a) : (b)
 16 #define mini(a,b) (a)<(b)? (a) : (b)
 17
 18 using namespace std;
 19
 20 int T;
 21 int n,m,k,l;
 22 int vis[N];
 23 int vis2[N];
 24 vector<int>bian[N];
 25 int re[N];
 26 int a,b;
 27 vector<int>::iterator it;
 28
 29 void ini()
 30 {
 31     int i;
 32     memset(vis,0,sizeof(vis));
 33     memset(vis2,0,sizeof(vis2));
 34     for(i=1;i<=100003;i++){
 35         bian[i].clear();
 36     }
 37     scanf("%d%d%d",&n,&m,&k);
 38     for(i=1;i<=k;i++){
 39         scanf("%d",&re[i]);
 40     }
 41     while(m--){
 42         scanf("%d%d",&a,&b);
 43         bian[a].push_back(b);
 44         bian[b].push_back(a);
 45     }
 46     scanf("%d",&l);
 47     for(i=1;i<=l;i++){
 48         scanf("%d",&re[i]);
 49         vis2[ re[i] ]=1;
 50     }
 51 }
 52
 53 int solve()
 54 {
 55     if(l!=k){
 56         return 0;
 57     }
 58     queue<int>q;
 59     int r;
 60     vis[ re[1] ]=1;
 61     for(int i=1;i<=l;i++){
 62        // printf(" i=%d re=%d vis=%d\n",i,re[i],vis[ re[i] ]);
 63         if(vis[ re[i] ]==0) return 0;
 64        // vis2[ re[i] ]=0;
 65         q.push(re[i]);
 66         while( q.size()>0 )
 67         {
 68             r=q.front();
 69             //printf("  r=%d\n",r);
 70             q.pop();
 71            // vis[r]=1;
 72
 73             for(it=bian[r].begin();it!=bian[r].end();it++){
 74              //   printf("   it=%d\n",*it);
 75                 if(vis[*it]==1) continue;
 76                 vis[ *it ]=1;
 77                 if( vis2[ *it ]==0 ){
 78                     q.push( (*it) );
 79                 }
 80             }
 81 /*
 82             for(int j=0;j<(int)bian[r].size();j++){
 83                 int y=bian[r][j];
 84                 if(vis[y]==1) continue;
 85                 vis[y]=1;
 86                 if(vis2[y]==0){
 87                     q.push(y);                }
 88             }*/
 89         }
 90     }
 91
 92     for(int i=1;i<=n;i++){
 93         if(vis[i]==0) return 0;
 94     }
 95     return 1;
 96 }
 97
 98
 99 int main()
100 {
101     //freopen("data.in","r",stdin);
102     scanf("%d",&T);
103     for(int cnt=1;cnt<=T;cnt++)
104    // while(T--)
105     //while(scanf("%I64d%I64d%I64d",&a,&b,&c)!=EOF)
106     {
107         ini();
108         if(solve()==0){
109             printf("No\n");
110         }
111         else{
112             printf("Yes\n");
113         }
114     }
115
116     return 0;
117 }

dfs版本:

  1 #include<iostream>
  2 #include<cstring>
  3 #include<cstdlib>
  4 #include<cstdio>
  5 #include<algorithm>
  6 #include<cmath>
  7 #include<queue>
  8 #include<map>
  9
 10 #define N 100005
 11 #define M 15
 12 #define mod 6
 13 #define mod2 100000000
 14 #define ll long long
 15 #define maxi(a,b) (a)>(b)? (a) : (b)
 16 #define mini(a,b) (a)<(b)? (a) : (b)
 17
 18 using namespace std;
 19
 20 int T;
 21 int n,m,k,l;
 22 int vis[N];
 23 int vis2[N];
 24 vector<int>bian[N];
 25 int re[N];
 26 int a,b;
 27
 28 void ini()
 29 {
 30     int i;
 31     memset(vis,0,sizeof(vis));
 32     memset(vis2,0,sizeof(vis2));
 33     for(i=1;i<=100003;i++){
 34         bian[i].clear();
 35     }
 36     scanf("%d%d%d",&n,&m,&k);
 37     for(i=1;i<=k;i++){
 38         scanf("%d",&re[i]);
 39     }
 40     while(m--){
 41         scanf("%d%d",&a,&b);
 42         bian[a].push_back(b);
 43         bian[b].push_back(a);
 44     }
 45     scanf("%d",&l);
 46     for(i=1;i<=l;i++){
 47         scanf("%d",&re[i]);
 48         vis2[ re[i] ]=1;
 49     }
 50 }
 51
 52 void dfs(int s)
 53 {
 54     vector<int>::iterator it;
 55     for(it=bian[s].begin();it!=bian[s].end();it++){
 56         if(vis[*it]==1) continue;
 57         vis[*it]=1;
 58         if(vis2[*it]==0){
 59             dfs(*it);
 60         }
 61     }
 62 }
 63
 64 int solve()
 65 {
 66     if(l!=k){
 67         return 0;
 68     }
 69     vis[ re[1] ]=1;
 70     for(int i=1;i<=l;i++){
 71        // printf(" i=%d re=%d vis=%d\n",i,re[i],vis[ re[i] ]);
 72         if(vis[ re[i] ]==0) return 0;
 73         dfs(re[i]);
 74     }
 75
 76     for(int i=1;i<=n;i++){
 77         if(vis[i]==0) return 0;
 78     }
 79     return 1;
 80 }
 81
 82
 83 int main()
 84 {
 85     //freopen("data.in","r",stdin);
 86     scanf("%d",&T);
 87     for(int cnt=1;cnt<=T;cnt++)
 88    // while(T--)
 89     //while(scanf("%I64d%I64d%I64d",&a,&b,&c)!=EOF)
 90     {
 91         ini();
 92         if(solve()==0){
 93             printf("No\n");
 94         }
 95         else{
 96             printf("Yes\n");
 97         }
 98     }
 99
100     return 0;
101 }
时间: 2024-10-02 19:41:53

ZOJ 3811 / 2014 牡丹江赛区网络赛 C. Untrusted Patrol bfs/dfs/并查集的相关文章

hdu5441(2015长春赛区网络赛1005)类最小生成树、并查集

题意:有一张无向图,一些点之间有有权边,某条路径的值等于路径上所有边的边权的最大值,而某个点对的值为这两点间所有路径的值的最小值,给出多个询问,每个询问有一个值,询问有多少点对满足其值小于等于询问值.点的顺序不同算作不同点对. 这题的做法很类似Kruskal算法.一开始所有的点都为一个并查集,从权值最小的边开始,当加入这条边的时候,这条边连接的两个点(并查集)之间相互到达的路径中,值最小的一个路径一定就是通过这条边的,所以这两点间的值就是这条边的权值.之后每加入一条最小边,如果可以用来合并两个并

zoj 3818 Pretty Poem(暴力处理字符串)2014年牡丹江赛区网络赛

Pretty Poem Time Limit: 2 Seconds      Memory Limit: 65536 KB Poetry is a form of literature that uses aesthetic and rhythmic qualities of language. There are many famous poets in the contemporary era. It is said that a few ACM-ICPC contestants can e

ZOJ 3810 A Volcanic Island (2014年牡丹江赛区网络赛B题)

1.题目描写叙述:点击打开链接 2.解题思路:本题是四色定理的模板题.只是有几种情况要提前特判一下:n==1直接输出,1<n<5时候无解,n==6时候套用模板会出现同样的块.因此要特判一下.其它情况都能直接利用模板构造出来. 3.代码: #define _CRT_SECURE_NO_WARNINGS #include<iostream> #include<algorithm> #include<cassert> #include<string>

ZOJ 3814 Sawtooth Puzzle (2014年牡丹江赛区网络赛F题)

1.题目描写叙述:点击打开链接 2.解题思路:本题是一道隐式图的搜索题目.一般来说,这类题目首先要定义状态,接下来是弄清楚状态怎样转移,以及状态怎样判重,怎样推断当前状态是否和目标状态同样.至于求解最短路就是经常使用的BFS就可以. 接下来我们逐一展开讨论. 1.状态的定义:看到这道题,猛一下会想着把每一个字符分别用01表示,然后看成二进制码进行状态压缩,这个状态定义尽管能够,可是显然,状态过于精确和复杂,假设把一行给压缩成一个整数,那么一个完整的图案要用8*9.即72个数才干描写叙述.显然过于

ZOJ 3818 Pretty Poem (2014年牡丹江赛区网络赛J题)

1.题目描述:点击打开链接 2.解题思路:本题是一道模拟题,输入一个串,要求判断是否形如"ABABA"或"ABABCAB".只需要对两种情况逐一尝试即可.然而这道题有诸多细节需要考虑.这里说一下我自己的方法. 首先,如果输入的串长度<5,那么直接输出No,或者去掉所有的标点后发现长度<5,输出No.长度上没问题后,写一个专门的solve(int type)函数,来判断是否是上述情况中的一种.对于第一种,只需要枚举A的长度即可,B的长度就是(len-3*i

ICPC 2018 徐州赛区网络赛

ACM-ICPC 2018 徐州赛区网络赛 ?去年博客记录过这场比赛经历:该死的水题 ?一年过去了,不被水题卡了,但难题也没多做几道.水平微微有点长进. ? ? D. Easy Math 题意: ? 给定 \(n\), \(m\) ,求 \(\sum _{i=1}^{m} \mu(in)\) .其中 $ 1 \le n \le 1e12$ , $ 1 \le m \le 2e9$ ,\(\mu(n)\) 为莫比乌斯函数. ? 思路: ? 容易知道,\(i\) 与 \(n\) 不互质时, \(\m

hdu 4771 Stealing Harry Potter&#39;s Precious (2013亚洲区杭州现场赛)(搜索 bfs + dfs) 带权值的路径

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4771 题目意思:'@'  表示的是起点,'#' 表示的是障碍物不能通过,'.'  表示的是路能通过的: 目的:让你从 '@' 点出发,然后每个点只能走一次,求出最小的距离: 解题思路:先用 bfs 求解出任意两点之间的距离,用 ans[i][j],表示点 i 到点  j 的距离: 然后用 dfs 递归求出从起点经过所有点的距离中,比较出最小的: AC代码: 1 #include<iostream>

2014 ACM/ICPC 牡丹江赛区现场赛

最近突然感觉状态不佳,可能是天冷的缘故? 赛后来做牡丹江赛区的题目 [A]3819 Average Score -- 签到题 [B] [C] [D] [E] [F] [G] [H] [I] [J] [K]3829 Known Notation -- 贪心 + 模拟 [A]3819 Average Score -- 签到题 Average Score Time Limit: 2 Seconds                                     Memory Limit: 65

2014 牡丹江赛区总结

随着上海赛区比赛的结束,2014赛季也告一段落了.是时候总结一下.. 从网络赛开始..就深感到自己实力的不足,除了牡丹江网络赛中出了一道搜索+剪枝之外,似乎我就没有做出什么贡献..总是冒充Java专业选手写写高精度..上网百度模板什么的..尝试开了几次大模拟或者复杂搜索也没能够现场做出来.总之就是感觉自己能力十分不足. 然后我,Wzy,1243France作为2014年AHU的首发去了牡丹江.牡丹江基本上是被看做最弱的赛区吧.所以教练放心大胆的让我们三个13级的去,虽然结果是很遗憾的.我们到牡丹