mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-05 13:58:48 +00:00
26 lines
453 B
C++
26 lines
453 B
C++
#include <bits/stdc++.h>
|
|
|
|
using namespace std;
|
|
|
|
int n, k, i, a[105];
|
|
map<int, int> b;
|
|
|
|
int main() {
|
|
cin >> n >> k;
|
|
for (int i = 1; i <= n; i++) {
|
|
cin >> a[i];
|
|
b[a[i]] = i;
|
|
}
|
|
if (b.size() < k) {
|
|
cout << "NO" << endl;
|
|
} else {
|
|
cout << "YES" << endl;
|
|
for (auto it : b) {
|
|
cout << it.second << ' ';
|
|
if (++i >= k) break;
|
|
}
|
|
cout << endl;
|
|
}
|
|
return 0;
|
|
}
|