Codeforces 994A. Fingerprints
Posted zhangjiuding
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Codeforces 994A. Fingerprints相关的知识,希望对你有一定的参考价值。
题意
从x数组中找到最多的y数组中有的数字,按在x数组中出现的顺序输出。
注意
这题x数组和y数组都不会出现重复数字。
代码
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
int x[15],y[15];
int main(){
ios::sync_with_stdio(false);
int n,m;
cin >> n >> m;
for(int i = 1;i <= n; ++i) cin >> x[i];
for(int i = 1;i <= m; ++i) cin >> y[i];
for(int i = 1;i <= n; ++i){
for(int j = 1;j <= m; ++j){
if(x[i] == y[j]){
cout << x[i] << " ";
}
}
}
cout << endl;
return 0;
}
以上是关于Codeforces 994A. Fingerprints的主要内容,如果未能解决你的问题,请参考以下文章
Knights of a Polygonal Table CodeForces - 994B (贪心)
Codeforces 994B. Knights of a Polygonal Table
Codeforces 994 C - Two Squares
CF994B Knights of a Polygonal Table 第一道 贪心 set/multiset的用法