PAT(甲级)2020年春季考试 7-3 Safari Park

7-3 Safari Park (25分)

A safari park(野生动物园)has K species of animals, and is divided into N regions. The managers hope to spread the animals to all the regions, but not the same animals in the two neighboring regions. Of course, they also realize that this is an NP complete problem, you are not expected to solve it. Instead, they have designed several distribution plans. Your job is to write a program to help them tell if a plan is feasible.

Input Specification:

Each input file contains one test case. For each case, the first line gives 3 integers: N (0

Then R lines follow, each gives the indices of a pair of neighboring regions, separated by a space.

Finally there is a positive M (≤20) followed by M lines of distribution plans. Each plan gives N indices of species in a line (the i-th index is the animal in the i-th rigion), separated by spaces. It is guaranteed that any pair of neighboring regions must be different, and there is no duplicated neighboring relations.

Output Specification:

For each plan, print in a line Yes if no animals in the two neighboring regions are the same, or No otherwise. However, if the number of species given in a plan is not K, you must print Error: Too many species. or Error: Too few species. according to the case.

Sample Input:

6 8 3
2 1
1 3
4 6
2 5
2 4
5 4
5 6
3 6
5
1 2 3 3 1 2
1 2 3 4 5 6
4 5 6 6 4 5
2 3 4 2 3 4
2 2 2 2 2 2

Sample Output:

Yes
Error: Too many species.
Yes
No
Error: Too few species.

题目限制:

PAT(甲级)2020年春季考试 7-3 Safari Park_第1张图片

题目大意:

一动物园有K种动物,被划分到N个区域(KError: Too many species.,如果小于K,输出Error: Too few species. 。如果等于K,那么判断是否存在两个相邻的区域有着相同种类的动物,如果没有,就输出Yes,否则输出No。

算法思路:

和之前的vertex coloring是一种类型的题目,其本质就是查询是否存在某一条边的两个顶点,其分配的动物种类编号相同(颜色相同)。那么我们使用edges数组存储所有的边,map speciesPerRegion保存每一个区域所分配的动物种类的映射,set species集合存储每一个计划所用到的动物种类数目,根据其大小与K的关系进行输出,在等于K的时候,遍历每一条边,判断两个顶点a和b是否出现speciesPerRegion[a]==speciesPerRegion[b],如果出现说明该计划不符合要求,输出No,否则输出Yes。对于species大小大于K和小于K的时候就输出相应信息即可。

提交结果:

PAT(甲级)2020年春季考试 7-3 Safari Park_第2张图片

AC代码:

#include
#include
#include
#include
#include
#include

using namespace std;

struct Edge{
    int a,b;
};

int N,R,K;//顶点的个数,边数,动物种类数目
vector edges;

int main(){
    scanf("%d %d %d",&N,&R,&K);
    Edge edge;
    for (int i = 0; i < R; ++i) { 
        int a,b;
        scanf("%d %d",&edge.a,&edge.b);
        edges.push_back(edge);
    }
    int M;
    scanf("%d",&M);
    for (int j = 0; j < M; ++j) {
        unordered_set species;//种类数目
        unordered_map speciesPerRegion;//每一个region的物种数目
        for (int i = 1; i <= N; ++i) {
            int num;
            scanf("%d",&num);
            species.insert(num);
            speciesPerRegion[i] = num;
        }
        if(species.size()>K){
            printf("Error: Too many species.\n");
        } else if(species.size()

你可能感兴趣的:(算法-数据结构,c++)