3050. 链表整理

10175101195

样例检测行末空格

我太难了

不会真的有人用链表做这个题吧

#include <bits/stdc++.h>
using namespace std;

int main()
{
    int t;
    cin >> t;
    for (int i = 0; i < t;i++){
        map<int, int> mp;
        int a1, a2, x;
        cin >> a1 >> a2;
        int p[a1];
        for (int j = 0; j < a1;j++)
            cin >> p[j];
        for (int j = 0; j < a2;j++){
            cin >> x;
            mp[x] = 1;
        }
        printf("case #%d:\n", i);
        bool flag = true;
        for (int j = 0; j < a1;j++){
            if(!mp[p[j]]){
                if(flag){
                    flag = false;
                    cout << p[j];
                }
                else
                    cout << " " << p[j];
            }
        }
        cout << endl;
    }
    return 0;
}
Fifnmar

这是什么鬼畜的题。就像楼上说的,这道题还检查行末空格 Orz

你当前正在回复 博客/题目
存在问题!