菜鸡


私信TA

用户名:ph1134370710

访问量:27009

签 名:

任花自飘零水自流

等  级
排  名 96
经  验 8660
参赛次数 8
文章发表 54
年  龄 0
在职情况 学生
学  校
专  业

  自我简介:

解题思路:

注意事项:

参考代码:

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
const ll MAX=987654321;
ll n,m;

int main()
{
	set<int> a,b;
	cin>>n>>m;
	while(n--)
	{
		int t;
		cin>>t;
		a.insert(t);
	}
	while(m--)
	{
		int t;
		cin>>t;
		if(a.find(t)!=a.end())
			b.insert(t);
	}
	set<int>::iterator it;
	for(it=b.begin();it!=b.end();it++)
		cout<<*it<<" ";
		return 0;
	
		
 }


 

0.0分

0 人评分

  评论区

  • «
  • »