• SDNU 1209.磊磊的随机数


    Description

    磊磊想在学校中请一些同学一起做一项问卷调查,为了实验的客观性,他先用计算机生成了N个1到1000之间的随机整数(N≤100),对于其中重复的数字,只保留一个,把其余相同的数去掉,不同的数对应着不同的学生的学号。然后再把这些数从小到大排序,按照排好的顺序去找同学做调查。请你协助明明完成“去重”与“排序”的工作。

    Input

    输入有2行,第1行为1个正整数,表示所生成的随机数的个数N

    第2行有N个用空格隔开的正整数,为所产生的随机数。

    Output

    输出也是2行,第1行为1个正整数M,表示不相同的随机数的个数。第2行为M个用空格隔开的正整数,为从小到大排好序的不相同的随机数。

    Sample Input

    10
    20 40 32 67 40 20 89 300 400 15
    

    Sample Output

    8
    15 20 32 40 67 89 300 400
    

    Source

    #include <cstdio>
    #include <iostream>
    #include <cmath>
    #include <string>
    #include <cstring>
    #include <algorithm>
    #include <queue>
    #include <vector>
    #include <map>
    using namespace std;
    #define ll long long
    
    int n;
    map<int, int>mp;
    
    int main()
    {
        int x, flag = 0, sum = 0;
        scanf("%d", &n);
        for(int i = 0; i<n; i++)
        {
            scanf("%d", &x);
            if(!mp[x])sum++;
            mp[x] = 1;
        }
        cout<<sum<<endl;
        for(map<int, int>::iterator ii = mp.begin(); ii != mp.end(); ii++)
        {
            if(flag)cout<<" ";
            flag = 1;
            cout<<ii->first;
        }
        printf("
    ");
        return 0;
    }
  • 相关阅读:
    分治思想
    二分查找---查找区间
    二分查找---有序数组的 Single Element
    Ogre碰撞检测
    JavaScript常用检测脚本(正则表达式)
    Js+XML 操作
    C++难点的一些总结
    MFC使用简单总结(便于以后查阅)
    vc中调用Com组件的所有方法详解
    OSG+VS2010+win7环境搭建---OsgEarth编译
  • 原文地址:https://www.cnblogs.com/RootVount/p/10991364.html
Copyright © 2020-2023  润新知