码迷,mamicode.com
首页 > 其他好文 > 详细

Codeforces 994A. Fingerprints

时间:2018-06-17 12:29:30      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:std   return   span   turn   out   names   using   数字   namespace   

题意

从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

标签:std   return   span   turn   out   names   using   数字   namespace   

原文地址:https://www.cnblogs.com/zhangjiuding/p/9192538.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!