zoukankan      html  css  js  c++  java
  • PAT A1149.Dangerous Goods Packaging (25 分)

    When shipping goods with containers, we have to be careful not to pack some incompatible goods into the same container, or we might get ourselves in serious trouble. For example, oxidizing agent (氧化剂) must not be packed with flammable liquid (易燃液体), or it can cause explosion.

    Now you are given a long list of incompatible goods, and several lists of goods to be shipped. You are supposed to tell if all the goods in a list can be packed into the same container.

    Input Specification:

    Each input file contains one test case. For each case, the first line gives two positive integers: N (≤), the number of pairs of incompatible goods, and M (≤), the number of lists of goods to be shipped.

    Then two blocks follow. The first block contains N pairs of incompatible goods, each pair occupies a line; and the second one contains M lists of goods to be shipped, each list occupies a line in the following format:

    K G[1] G[2] ... G[K]
    

    where K (≤) is the number of goods and G[i]'s are the IDs of the goods. To make it simple, each good is represented by a 5-digit ID number. All the numbers in a line are separated by spaces.

    Output Specification:

    For each shipping list, print in a line Yes if there are no incompatible goods in the list, or No if not.

    Sample Input:

    6 3
    20001 20002
    20003 20004
    20005 20006
    20003 20001
    20005 20004
    20004 20006
    4 00001 20004 00002 20003
    5 98823 20002 20003 20006 10010
    3 12345 67890 23333
    

    Sample Output:

    No
    Yes
    Yes

    题意:给出不兼容的货物列表,判断给出的一堆货物是否相容。

    分析:用 map 存储不兼容的货物,遍历判断给出的一堆货物中是否有不兼容的。

    #include<bits/stdc++.h>
    using namespace std;
    int main(){
        int N,M,K,a,b;
        scanf("%d%d",&N,&M);
        unordered_map<int,unordered_set<int>>mp;
        for(int i=0;i<N;++i){
            scanf("%d%d",&a,&b);
            mp[a].insert(b);
        }
        while(M--){
            scanf("%d",&K);
            unordered_set<int>s;
            while(K--){
                scanf("%d",&a);
                s.insert(a);
            }
            bool flag=true;
            for(auto i:s)
                for(auto j:mp[i])
                    if(s.find(j)!=s.end())
                        flag=false;
            printf("%s
    ",flag?"Yes":"No");
        }
        return 0;
    }
  • 相关阅读:
    概率图模型导论
    超平面与法向量
    感知机
    最全的常用正则表达式大全——包括校验数字、字符、一些特殊的需求等等
    数组去重的几种方法
    Vuex学习笔记(-)安装vuex
    js判断一个字符串是否是回文字符串
    取出字符串中的所有数字
    js将手机号中间四位变成*号
    微信小程序电商实战(-)商城首页
  • 原文地址:https://www.cnblogs.com/yellowzunzhi/p/11112883.html
Copyright © 2011-2022 走看看