-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path61.cpp
More file actions
53 lines (53 loc) · 853 Bytes
/
61.cpp
File metadata and controls
53 lines (53 loc) · 853 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#include<bits/stdc++.h>
using namespace std;
typedef long long int lli;
typedef long int li;
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cin.tie(NULL);
// #ifndef ONLINE_JUDGE
// freopen("input.txt","r",stdin);
// freopen("output.txt","w",stdout);
// #endif
int n,k,temp;
int count = 0;
cin>>n>>k;
std::vector<int> v(101,-1);
std::vector<int> a;
for (int i = 0; i < n; i++)
{
cin>>temp;
if(v[temp]==-1)
{
v[temp] = i;
count++;
}
}
if(count>=k)
{ count = 0;
cout<<"YES\n";
for (int i = 0; i < 101; i++)
{
if(v[i]!=-1)
{
a.push_back(v[i]);
count++;
}
if(count==k)
{
break;
}
}
sort(a.begin(), a.end());
for (int i = 0; i < a.size(); i++)
{
cout<<a[i]+1<<" ";
}
}
else
{
cout<<"NO\n";
}
}