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;
    }
  • 相关阅读:
    Spring AOP中文教程《转》
    VBScript 转义字符
    Spring工作原理
    Struts+Hibernate+Spring工作原理及使用理由
    SQL Server中,varchar和nvarchar如何选择?<转>
    TSQL 游标使用
    oracle 与sql server临时表 比较《转》
    Oracle查询语法大全<转>
    B/S 模式 套打 的一种实现方式<转>
    基于Web的套打方案集粹<转>
  • 原文地址:https://www.cnblogs.com/yellowzunzhi/p/11112883.html
Copyright © 2011-2022 走看看