PAT 1121 Damn Single[简单]

1121 Damn Single (25 分)

"Damn Single (单身狗)" is the Chinese nickname for someone who is being single. You are supposed to find those who are alone in a big party, so they can be taken care of.

Input Specification:

Each input file contains one test case. For each case, the first line gives a positive integer N (≤ 50,000), the total number of couples. Then N lines of the couples follow, each gives a couple of ID‘s which are 5-digit numbers (i.e. from 00000 to 99999). After the list of couples, there is a positive integer M (≤ 10,000) followed by M ID‘s of the party guests. The numbers are separated by spaces. It is guaranteed that nobody is having bigamous marriage (重婚) or dangling with more than one companion.

Output Specification:

First print in a line the total number of lonely guests. Then in the next line, print their ID‘s in increasing order. The numbers must be separated by exactly 1 space, and there must be no extra space at the end of the line.

Sample Input:

3
11111 22222
33333 44444
55555 66666
7
55555 44444 10000 88888 22222 11111 23333

Sample Output:

5
10000 23333 44444 55555 88888

题目大意:给出n对情侣,然后再给出m对参加宴会的人,判断这些人当中有多少人是没有伙伴来参加宴会的(本身已经结婚,但是没带伴侣来的也会被计算进来)

#include <iostream>
#include<vector>
#include<map>
using namespace std;

map<string,string> m2f;
map<string,string> inp;
int main() {
    int n;
    cin>>n;
    string x,y;
    for(int i=0;i<n;i++){
        cin>>x>>y;
        m2f[x]=y;
        m2f[y]=x;
    }
    int m;
    cin>>m;
    string s;
    for(int i=0;i<m;i++){
        cin>>s;
        inp[s]=1;//因为这里的map是自然排序的,所以最终vector里也是自然排序的。
    }
    int ct=0;
    vector<string> vt;
    for(auto it=inp.begin();it!=inp.end();it++){
        string str=it->first;
        if(inp.count(m2f[str])==0){
            vt.push_back(str);
        }
    }
    cout<<vt.size()<<‘\n‘;
    for(int i=0;i<vt.size();i++){
        cout<<vt[i];
        if(i!=vt.size()-1)cout<<" ";
    }
    return 0;
}

//还是比较简单的,但是还是提交了两次,为什么呢?

1.需要主要最后的输出格式,是1!=vt.size()-1,知道了吗?

原文地址:https://www.cnblogs.com/BlueBlueSea/p/9863116.html

时间: 2024-07-30 16:00:43

PAT 1121 Damn Single[简单]的相关文章

1121 Damn Single (25 分)

1121 Damn Single (25 分) "Damn Single (单身狗)" is the Chinese nickname for someone who is being single. You are supposed to find those who are alone in a big party, so they can be taken care of. Input Specification: Each input file contains one tes

1121 Damn Single (25 分)

1121 Damn Single (25 分) "Damn Single (单身狗)" is the Chinese nickname for someone who is being single. You are supposed to find those who are alone in a big party, so they can be taken care of. Input Specification: Each input file contains one tes

PAT 甲级 1121 Damn Single

1 #include <iostream> 2 #include <string.h> 3 #include <algorithm> 4 #include <cstdio> 5 6 int a[100000], b[100000], c[100000]; 7 int panduan=0; 8 int ff=0; 9 using namespace std; 10 11 void bijiao(int gps, int x, int n) 12 { 13 fo

PAT甲题题解-1121. Damn Single (25)-水题

博主欢迎转载,但请给出本文链接,我尊重你,你尊重我,谢谢~http://www.cnblogs.com/chenxiwenruo/p/6789787.html特别不喜欢那些随便转载别人的原创文章又不给出链接的所以不准偷偷复制博主的博客噢~~ 给出n个couple和m个宾客如果宾客没有couple或者couple没来,则被认为lonely问你有多少个lonely的宾客,并且按照id的升序输出 #include <iostream> #include <cstdio> #include

1121. Damn Single (25)

"Damn Single (单身狗)" is the Chinese nickname for someone who is being single. You are supposed to find those who are alone in a big party, so they can be taken care of. Input Specification: Each input file contains one test case. For each case, t

PAT 1120 Friend Numbers[简单]

1120 Friend Numbers (20 分) Two integers are called "friend numbers" if they share the same sum of their digits, and the sum is their "friend ID". For example, 123 and 51 are friend numbers since 1+2+3 = 5+1 = 6, and 6 is their friend I

PAT 甲级真题题解(121-155)

1121 Damn Single 模拟 1 // 1121 Damn Single 2 #include <map> 3 #include <vector> 4 #include <cstdio> 5 #include <iostream> 6 #include <algorithm> 7 using namespace std; 8 9 map<int, int> m, vis; 10 vector<int> p; 11

A题目

1 1001 A+B Format(20) 2 1002 A+B for Polynomials(25) 3 1003 Emergency(25) 4 1004 Counting Leaves(30) 5 1005 Spell It Right(20) 6 1006 Sign In and Sign Out(25) 7 1007 Maximum Subsequence Sum(25) 8 1008 Elevator(20) 9 1009 Product of Polynomials(25) 10

字符串模式匹配

一.问题 设有字符串s和pat,长度分别为LengthS和LengthP,在s中查找模式pat. 二.简单方法 顺序考察s的第i(0<=i<=LengthS-LengthP)个位置,判断是否为一个匹配的起点,若成功,为S设置p指针,pat设置q指针,扫描判断是否匹配. 时间复杂度O(LengthS*LengthP). 三.KMP算法 时间复杂度O(LengthP+LengthS). 1.基本思想 设s=s0,s1,...,s(m-1),pat=p0,p1,...p(n-1) 当前比较si与pj