首页 > 其他 > 详细

HDU2034 人见人爱 A - B

时间:2019-05-17 10:25:09      阅读:122      评论:0      收藏:0      [点我收藏+]

2019-05-17

09:37:46

加油,加油 !!!

结果要从小到大输出

NULL后面没有空格

m && n == 0才结束

注意:看题仔细,罚时很严重

#include <bits/stdc++.h>
using namespace std;
vector<int> a;
int main()
{
    int n, m;
    int i, j;
    int x;
    while(~scanf("%d %d", &n, &m))
    {
        if (n == 0 && m == 0)
        {
            return 0;
        }
        a.clear();
        for (i = 0; i < n; i++)
        {
            scanf ("%d", &x);
            a.push_back(x);
        }
        for (j = 0; j < m; j++)
        {
            scanf("%d", &x);
            if(find(a.begin(), a.end(), x) != a.end())
            {
                a.erase(find(a.begin(), a.end(), x));
            }
        }
        if(a.empty())
        {
            cout << "NULL" << endl;
            continue;
        }
        sort(a.begin(),a.end());
        for(i = 0; i < a.size(); i++)
        {
            cout << a[i] << " ";
        }
        cout << endl;
    }
    return 0;
}

 

HDU2034 人见人爱 A - B

原文:https://www.cnblogs.com/Artimis-fightting/p/10879662.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!