1149 Dangerous Goods Packaging
题目
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:
1 | 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
思路
使用散列来求解:unordered_map<string, vector<string>>mp 表示每个商品(string)对应的不合适的商品(存储在变长数组vector<string>中)
vector的基本操作:push_back / pop_back() / size() / insert() / clear() / erase()
代码
#include<stdio.h> #include<iostream> #include<vector> #include <unordered_map> using namespace std; int main(){ int n,m; unordered_map<string, vector<string>> mp; cin>>n>>m; for(int i=0; i<n; i++){ string x,y; cin>>x>>y; mp[x].push_back(y); mp[y].push_back(x); } for(int i=0; i<m; i++){ int num; cin>>num; string z[1006]; unordered_map<string, bool> pp; for(int j=0; j<num; j++){ cin>>z[j]; pp[z[j]] = true; } bool flag = true; for(int j=0; j<num; j++){ for(int w=0; w<mp[z[j]].size(); w++){ if(pp[mp[z[j]][w]] == true){ flag= false; } } } if(flag == false){ printf("No\n"); }else{ printf("Yes\n"); } } return 0; }
· 分享一个免费、快速、无限量使用的满血 DeepSeek R1 模型,支持深度思考和联网搜索!
· 使用C#创建一个MCP客户端
· ollama系列1:轻松3步本地部署deepseek,普通电脑可用
· 基于 Docker 搭建 FRP 内网穿透开源项目(很简单哒)
· 按钮权限的设计及实现