HDU2034 人见人爱 A - B

2019-05-18 07:06:58来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

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;
}

 


原文链接:https://www.cnblogs.com/Artimis-fightting/p/10879662.html
如有疑问请与原作者联系

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:二分查找

下一篇:HDU1412 {A} + {B}