988A. Diverse Team C++

题目地址:http://codeforces.com/problemset/problem/988/A

题目:

There are nn students in a school class, the rating of the ii-th student on Codehorses is aiai. You have to form a team consisting of kk students (1kn1≤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 kk 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 nn and kk (1kn1001≤k≤n≤100) — the number of students and the size of the team you have to form.

The second line contains nn integers a1,a2,,ana1,a2,…,an (1ai1001≤ai≤100), where aiai is the rating of ii-th student.

Output

If it is impossible to form a suitable team, print "NO" (without quotes). Otherwise print "YES", and then print kk distinct integers from 11 to nnwhich 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 11 to nn.

Examples
input
Copy
5 3
15 13 15 15 12
output
Copy
YES
1 2 5 
input
Copy
5 4
15 13 15 15 12
output
Copy
NO
input
Copy
4 4
20 10 40 30
output
Copy
YES
1 2 3 4 
Note

All possible answers for the first example:

  • {1 2 5}
  • {2 3 5}
  • {2 4 5}

Note that the order does not matter.

思路:

这题的意思就是给你N个学生,你去找有没有k种不同的分数,如果有就输出,没有就no。

代码:

#include<iostream>
#include<queue>
#include<cstring>
using namespace std;
int main()
{
    int n,k;
    while(cin>>n>>k)
    {
        queue<int> q;
        int b[105];
        int sc;
        int tot=0;
        memset(b,0,sizeof(b));
        int i;
        for(i=0;i<n;i++)
        {
            cin>>sc;
            if(b[sc]==0){tot++;q.push(i+1);}
            b[sc]=1;
        }
        if(tot<k)cout<<"NO"<<endl;
        else
        {
            cout<<"YES"<<endl;
            while(k--)
            {
                cout<<q.front()<<" ";
                q.pop();
            }
            cout<<endl;
        }
    }
    return 0;
}

猜你喜欢

转载自blog.csdn.net/zero_979/article/details/80572665