其他分享
首页 > 其他分享> > PAT(Basic Level) Practice : 1090 危险品装箱 (25分)

PAT(Basic Level) Practice : 1090 危险品装箱 (25分)

作者:互联网

1090 危险品装箱 (25分)

一个小坑

访问vecotr中不存在的下标,比如-1,会随机返回一个巨大的值
读取某个货物的编号,先判断它是否有不相容的物品,比如0001,没有不相容的货物,不用判断。
用两个哈希表:一个存储下标,一个存储是否有该货物

一个货物有可能与不止一个货物不相容
比如2003与2004 2001冲突
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

#include <iostream>
#include <vector>
#include <string>
#include <cstdio>
//scanf printf防止超时
#include <algorithm>
//vector的sort
#include <sstream>
//转换
using namespace std;

#include<iomanip>
//精度

#include<cmath>
//round四舍五入取整
#include <map>

int Hash[100000]={0};//index
int Hash1[100000]={0};//是否出现
class good
{
public:

    int name;
    vector<int> antis;
    good()
    {
        name=-1;
    }
};

int main()
{
    int n,m;
    cin>>n>>m;
    vector<good> goods;
    for(int i=0;i<n;i++)
    {
        int n1,n2;
        cin>>n1>>n2;
        if(Hash[n1]==0)
        {
            good g1;
            g1.name=n1;
            g1.antis.push_back(n2);
            goods.push_back(g1);
            Hash[n1]=goods.size();
        }else
        {
            goods[Hash[n1]-1].antis.push_back(n2);
        }
        if(Hash[n2]==0)
        {
            good g2;
            g2.name=n2;
            g2.antis.push_back(n1);
            goods.push_back(g2);
            Hash[n2]=goods.size();
        }else
        {
            goods[Hash[n2]-1].antis.push_back(n1);
        }
    }
    /*cout<<"****************1"<<endl;
    for(int i=0;i<goods.size();i++)
    {
        cout<<goods[i].name<<": "<<goods[i].antis.size()<<" index: "<<Hash[goods[i].name]<<endl;
    }*/
    for(int i=0;i<m;i++)
    {
        int k;
        cin>>k;
        vector<int> temp;
        for(int j=0;j<k;j++)
        {
            int t;
            cin>>t;
            Hash1[t]=1;

            temp.push_back(t);
        }
//cout<<temp.size()<<endl;

        bool flag=true;
        for(int j=0;j<temp.size();j++)
        {
            if(Hash[temp[j]]>=1)
            {


             for(int p=0;p<goods[Hash[temp[j]]-1].antis.size();p++)
            {
                //cout<<goods[Hash[temp[j]]-1].antis.size()<<endl;
                if(Hash1[goods[Hash[temp[j]]-1].antis[p]]>0)
                {
                    flag=false;
                    //cout<<goods[Hash[temp[j]]-1].antis[p]<<endl;
                }
            }
            }
        }


        if(flag)
        {
            cout<<"Yes"<<endl;
        }else
        {
            cout<<"No"<<endl;
        }
        for(int j=0;j<temp.size();j++)
        {
            Hash1[temp[j]]=0;
        }
    }

    return 0;
}

标签:25,goods,1090,Level,int,back,push,Hash,include
来源: https://www.cnblogs.com/zchq/p/13758142.html