首页 > 编程知识 正文

PAT 1149 Dangerous Goods Packaging25 分 甲级,pat甲级满分什么水平

时间:2023-05-06 02:43:02 阅读:181448 作者:2058

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:

3358 www.Sina.com/http://www.Sina.com/http://www.Sina.com /

Each input file contains one test case. For each case, the first line gives two positive integers: N (10

4

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

# include iostream # include vector # includemapusingnamespacestd; int main () intn,k,t1,t2; mapint,vectorint m; scanf('%d%d ),n,k ); for(intI=0; i n; I ) Scanf('%d%d ',t1,t2 ); m[T1].push_back(T2; m[T2].push_back(T1; }while(k-- ) { int cnt,flag=0,a[100000]={0}; scanf('%d ',cnt ); Vectorintv(CNT; for(intI=0; i cnt; I ) scanf('%d ',v ) I ); a[v[i]]=1; }for(intI=0; i v.size (; I ) for(intj=0; j m[v[i]].size (; j ) if(a[m[v[I]][j] )==1) flag=1; printf('%sn ',flag?' 否' : '是'; } return 0; }

版权声明:该文观点仅代表作者本人。处理文章:请发送邮件至 三1五14八八95#扣扣.com 举报,一经查实,本站将立刻删除。