zoukankan      html  css  js  c++  java
  • 1149 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 (104​​), the number of pairs of incompatible goods, and M (100), 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 (1,000) 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
    
     
    #include<iostream>
    #include<vector>
    #include<map>
    using namespace std;
    
    int main(){
        map<string,vector<string> > m1;
        map<string,int> m2;
        vector<string> v;
        int n,m;
        cin >> n >> m;
        string a,b;
        while(n--){
            cin >> a >> b;
            m1[a].push_back(b);
            m1[b].push_back(a);
        }
        int k;
        while(m--){
            cin >> k;
            m2.clear();
            v.clear();
            bool flag = 0;
            while(k--){
                cin >> a;
                v.push_back(a);
                m2[a] = 1;
            }
            for(int i = 0; i < v.size(); i++){
                for(int j = 0; j < m1[v[i]].size(); j++){
                    if(m2[m1[v[i]][j]] == 1){
                        flag = 1;
                        break;
                    }
                }
            }
            if(flag) cout << "No" <<endl;
            else cout << "Yes" <<endl;
        }
        return 0;
    }
  • 相关阅读:
    python 学习笔记 数值型(1)
    python 学习笔记 标识符和变量(3)
    python 学习笔记 字符串(2)
    jsp+servlet+javaBean+Dao
    面试被问到岗时间,是越快越好吗?
    有赞多平台推广接入与测试
    HTTPS 加密、证书、签名与握手
    开发到底要不要自己做测试?
    我也曾找不到工作
    世界第三大浏览器正在消亡
  • 原文地址:https://www.cnblogs.com/wanghao-boke/p/10458780.html
Copyright © 2011-2022 走看看