zoukankan      html  css  js  c++  java
  • Codeforces Round #486 (Div. 3) A. Diverse Team

    Codeforces Round #486 (Div. 3) A. Diverse Team

    题目连接:

    http://codeforces.com/contest/988/problem/A

    Description

    There are n students in a school class, the rating of the i-th student on Codehorses is ai. You have to form a team consisting of
    k students (1≤k≤n) such that the ratings of all team members are distinct.

    If it is impossible to form a suitable team, print "NO" (without quotes). Otherwise print "YES", and then print k distinct numbers which should be the indices of students in the team you form. If there are multiple answers, print any of them.

    Input

    The first line contains two integers n and k (1≤k≤n≤100) — the number of students and the size of the team you have to form.

    The second line contains n integers a1,a2,…,an (1≤ai≤100), where
    ai is the rating of i-th student.

    Output

    If it is impossible to form a suitable team, print "NO" (without quotes). Otherwise print "YES", and then print k distinct integers from 1 to n which should be the indices of students in the team you form. All the ratings of the students in the team should be distinct. You may print the indices in any order. If there are multiple answers, print any of them.

    Assume that the students are numbered from 1 to n.

    Sample Input

    5 3

    15 13 15 15 12

    Sample Output

    YES

    1 2 5

    Hint

    Note
    All possible answers for the first example:

    {1 2 5}

    {2 3 5}

    {2 4 5}

    Note that the order does not matter.

    题意

    给你一个集合,问你有没有k元子集

    题解:

    用一个 set 来判重。

    代码

    #include <bits/stdc++.h>
    
    using namespace std;
    
    int n, k;
    int cnt, x;
    set<int> s;
    queue<int> q;
    
    int main() {
        cin >> n >> k;
        while (!q.empty()) q.pop();
        for (int i = 0; i < n && cnt < k; i++) {
            cin >> x;
            if (!s.count(x)) {
                cnt++;
                s.insert(x);
                q.push(i + 1);
            }
        }
        if (cnt >= k) {
            cout << "YES" << endl;
            while (!q.empty()) {
                cout << q.front() << " ";
                q.pop();
            }
        } else
            puts("NO");
    }
    
  • 相关阅读:
    [转]微服务架构
    [转]认识JWT
    [转]win10中安装JDK8以及环境配置
    [转]PHP开发者必须了解的工具—Composer
    [转]php,使用Slim和Medoo搭建简单restful服务
    [转]分别使用Node.js Express 和 Koa 做简单的登录页
    [转]Node.js框架对比:Express/Koa/Hapi
    centos rancher 通过本机 docker images 新增container
    [转]Ubuntu18.04下使用Docker Registry快速搭建私有镜像仓库
    [转]rancher 初步
  • 原文地址:https://www.cnblogs.com/EDGsheryl/p/9153678.html
Copyright © 2011-2022 走看看