PAT-2019年冬季考试-甲级 7-3 Summit (25分) (邻接矩阵存储,直接暴力)
A summit (峰会) is a meeting of heads of state or government. Arranging the rest areas for the summit is not a simple job. The ideal arrangement of one area is to invite those heads so that everyone is a direct friend of everyone.
Now given a set of tentative arrangements, your job is to tell the organizers whether or not each area is all set.
Input Specification:
Each input file contains one test case. For each case, the first line gives two positive integers N (≤ 200), the number of heads in the summit, and M, the number of friendship relations. Then M lines follow, each gives a pair of indices of the heads who are friends to each other. The heads are indexed from 1 to N.
Then there is another positive integer K (≤ 100), and K lines of tentative arrangement of rest areas follow, each first gives a positive number L (≤ N), then followed by a sequence of L distinct indices of the heads. All the numbers in a line are separated by a space.
Output Specification:
For each of the K areas, print in a line your advice in the following format:
- if in this area everyone is a direct friend of everyone, and no friend is missing (that is, no one else is a direct friend of everyone in this area), print - Area X is OK..
- if in this area everyone is a direct friend of everyone, yet there are some other heads who may also be invited without breaking the ideal arrangement, print - Area X may invite more people, such as H.where- His the smallest index of the head who may be invited.
- if in this area the arrangement is not an ideal one, then print - Area X needs help.so the host can provide some special service to help the heads get to know each other.
Here X is the index of an area, starting from 1 to K.
Sample Input:
8 10
5 6
7 8
6 4
3 6
4 5
2 3
8 2
2 7
5 3
3 4
6
4 5 4 3 6
3 2 8 7
2 2 3
1 1
2 4 6
3 3 2 1
Sample Output:
Area 1 is OK.
Area 2 is OK.
Area 3 is OK.
Area 4 is OK.
Area 5 may invite more people, such as 3.
Area 6 needs help.题意:
给N个点,M条边。K个询问。每个询问给出L个点,问这L个点是不是两两相连的。
如果两两相连:
存不存在一个其它的点,与这L个点都有连接:
    有:Area i may invite more people, such as 这个点.
    没有:Area i is OK.
不是两两相连:Area i needs help.
题解:
AC代码:
#include<bits/stdc++.h>
using namespace std;
int e[][];
int a[];
int v[];
int n,m;
int main(){
cin>>n>>m;
memset(e,,sizeof(e));
for(int i=;i<=m;i++){
int u,v;
cin>>u>>v;
e[u][v]=e[v][u]=;//邻接矩阵存储
}
int k;
cin>>k;
int num;
for(int i=;i<=k;i++){//k个询问
cin>>num;
memset(v,,sizeof(v));//v来标记所询问的num个点
for(int j=;j<=num;j++) {
cin>>a[j];
v[a[j]]=;//做上标记
}
int f=;//是不是两两相连
for(int j=;j<=num;j++){
for(int p=j+;p<=num;p++){
if(e[a[j]][a[p]]!=) f=;
break;
}
}
if(!f) cout<<"Area "<<i<<" needs help.";
else{//如果是两两相连
int ans=-;//是否存在
for(int j=;j<=n;j++){//查询存不存在一个点与这num个点都相连
if(v[j]) continue;//本身是num个点里的不算
int ff=;
for(int p=;p<=num;p++){
if(e[a[p]][j]!=){
ff=;
break;
}
}
if(ff) {//满足与num中的每个点都相连
ans=j;//存在
break;
}
}
if(ans!=-){//存在
cout<<"Area "<<i<<" may invite more people, such as "<<ans<<".";
}else{//不存在
cout<<"Area "<<i<<" is OK.";
}
}
if(i!=k) cout<<endl;//行末无空行
}
return ;
}
PAT-2019年冬季考试-甲级 7-3 Summit (25分) (邻接矩阵存储,直接暴力)的更多相关文章
- PAT-2019年冬季考试-甲级 7-2 Block Reversing (25分)  (链表转置)
		7-2 Block Reversing (25分) Given a singly linked list L. Let us consider every K nodes as a block ( ... 
- PAT-2019年冬季考试-甲级 7-4 Cartesian Tree (30分)(最小堆的中序遍历求层序遍历,递归建树bfs层序)
		7-4 Cartesian Tree (30分) A Cartesian tree is a binary tree constructed from a sequence of distinct ... 
- PAT (Advanced Level) Practice 1002 A+B for Polynomials (25 分) 凌宸1642
		PAT (Advanced Level) Practice 1002 A+B for Polynomials (25 分) 凌宸1642 题目描述: This time, you are suppos ... 
- PAT (Basic Level) Practice (中文)1055 集体照 (25 分) 凌宸1642
		PAT (Basic Level) Practice (中文)1055 集体照 (25 分) 凌宸1642 题目描述: 拍集体照时队形很重要,这里对给定的 N 个人 K 排的队形设计排队规则如下: 每 ... 
- PAT-2019年冬季考试-甲级 7-1 Good in C (20分)
		7-1 Good in C (20分) When your interviewer asks you to write "Hello World" using C, can y ... 
- 【PAT甲级】1070 Mooncake (25 分)(贪心水中水)
		题意: 输入两个正整数N和M(存疑M是否为整数,N<=1000,M<=500)表示月饼的种数和市场对于月饼的最大需求,接着输入N个正整数表示某种月饼的库存,再输入N个正数表示某种月饼库存全 ... 
- PAT 甲级 1020 Tree Traversals (25分)(后序中序链表建树,求层序)***重点复习
		1020 Tree Traversals (25分) Suppose that all the keys in a binary tree are distinct positive intege ... 
- PAT 甲级 1146 Topological Order (25 分)(拓扑较简单,保存入度数和出度的节点即可)
		1146 Topological Order (25 分) This is a problem given in the Graduate Entrance Exam in 2018: Which ... 
- PAT 甲级 1071 Speech Patterns (25 分)(map)
		1071 Speech Patterns (25 分) People often have a preference among synonyms of the same word. For ex ... 
随机推荐
- Distance(2019年牛客多校第八场D题+CDQ+树状数组)
			题目链接 传送门 思路 这个题在\(BZOJ\)上有个二维平面的版本(\(BZOJ2716\)天使玩偶),不过是权限题因此就不附带链接了,我也只是在算法进阶指南上看到过,那个题的写法是\(CDQ\), ... 
- beta冲刺(4/7)
			作业格式 课程名称:软件工程1916|W(福州大学) 作业要求:项目beta冲刺(团队) 团队名称: 那周余嘉熊掌将得队 作业目标:beta(4/7) 队员学号 队员姓名 博客地址 备注 221600 ... 
- Spring Boot 中集成 Redis 作为数据缓存
			只添加注解:@Cacheable,不配置key时,redis 中默认存的 key 是:users::SimpleKey [](1.redis-cli 中,通过命令:keys * 查看:2.key:缓存 ... 
- jquery-ui.min.js的draggable()拖拽功能
			<!doctype html> <html lang="en"> <head> <meta charset="utf-8&quo ... 
- UI的编程学本质
			一.UI是数据的组织方式.展示及连接 UI模块--数据单元: 链接---数据单元间的联系: 相对链接-数据结构的树.链表: 绝对链接-大的模块级别的切换: 二.UI的IO学本质 屏幕.键盘 将信息输出 ... 
- 二叉堆的构建(Java)
			package com.rao.linkList; /** * @author Srao * @className BinaryHeap * @date 2019/12/3 14:14 * @pack ... 
- 通过日志解决问题的一个小例子-http换端口
			这个例子是将http服务的监听端口改为8999后重启服务报错: 此时查看日志/var/log/message,显示如下: 如红笔所示轨迹得到设置端口类型的命令:semanage port -a -t ... 
- hive基础知识三
			1. 基本查询 注意 SQL 语言大小写不敏感 SQL 可以写在一行或者多行 关键字不能被缩写,也不能分行 各子句一般要分行写 使用缩进提高语句的可读性 1.1 全表和特定列查询 全表查询 selec ... 
- 这个中秋,我用 Java 画了一个月饼!
			栈长代表微信公众号 "Java技术栈" 祝所有粉丝中秋佳节快乐! 为了用一种特殊的方式表达我的心意,去年中秋节,我写了这篇文章: 为了写中秋这篇文章,我学了 20 种编程语言! 没 ... 
- 分析WordPress数据表之评论表(功能篇)
			数据表分析 wp_comments(评论表) 该表字段,如下:comment_ID(评论ID)comment_post_ID(评论文章ID)comment_author(评论者用户名)comment_ ... 
