洛谷-P1271 【深基9.例1】选举学生会

洛谷-P1271 【深基9.例1】选举学生会

原题链接:https://www.luogu.com.cn/problem/P1271


题目描述

学校正在选举学生会成员,有 \(n(n\le 999)\) 名候选人,每名候选人编号分别从 1 到 \(n\),现在收集到了 \(m(m<=2000000)\) 张选票,每张选票都写了一个候选人编号。现在想把这些堆积如山的选票按照投票数字从小到大排序。输入 \(n\)\(m\) 以及 \(m\) 个选票上的数字,求出排序后的选票编号。

输入格式

输出格式

输入输出样例

输入 #1

5 10
2 5 2 2 5 2 2 2 1 2

输出 #1

1 2 2 2 2 2 2 2 5 5

C++代码

#include <iostream>
#include <algorithm>
using namespace std;

int main() {
    int n, m;
    cin >> n >> m;
    int a[m];
    for (int i=0; i<m; ++i)
        cin >> a[i];
    sort(a, a+m);
    for (int i=0; i<m; ++i)
        cout << a[i] << ' ';
    cout << endl;
    return 0;
}
posted @ 2020-08-16 09:16  yuzec  阅读(619)  评论(0编辑  收藏  举报