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 (≤), 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

    危险品装箱:我们在箱子中不能放有冲突的化学物质。

    已知冲突的化学物质,和一个箱子里面放的东西,进行查看是否危险。

    我们要进行遍历冲突的化学物质,而不是箱子中的每两个元素。如果遍历箱子中的元素,则会超时

    #include <iostream>
    #include <vector>
    #include <unordered_map>
    #include <unordered_set>
    using namespace std;
    int N, M, K;
    string a, b;
    unordered_map<string, vector<string>> m;
    int main() {
        cin >> N >> M;
        while(N--) {
            cin >> a >> b;
            m[a].push_back(b);
            m[b].push_back(a);
        }
        while(M--) {
            scanf("%d", &K);
            unordered_set<string> s;
            for(int i = 0; i < K; i++) {
                cin >> a;
                s.insert(a);
            }
            bool danger = false;
            for(auto x: s) {
                for(auto y: m[x]) {
                    if(s.find(y) != s.end()) {
                        danger = true;
                        break;
                    }
                }
                if(danger) break;
            }
            if(danger) printf("No
    ");
            else printf("Yes
    ");
        }
        return 0;
    }
  • 相关阅读:
    USACO--2.1The Castle
    浅谈python字符串存储形式
    面向对象——一起来复习托付与事件!
    数据结构——算法之(032)(求两个串中的第一个最长子串)
    读《浪潮之巅》有感
    关于android 怎样安装 assets文件下的apk
    每日一小练——求质数
    怎样使破解网页的禁止复制黏贴
    Angularjs Nodejs Grunt 一个样例
    《TCP/IP具体解释卷2:实现》笔记--域和协议
  • 原文地址:https://www.cnblogs.com/littlepage/p/12817966.html
Copyright © 2011-2022 走看看