-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy path84D. Doctor.cpp
80 lines (65 loc) · 1.56 KB
/
84D. Doctor.cpp
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/*
Idea:
- We can reduce `k` if we try to remove animals from the smallest number of
examinations to the biggest.
- Then we can reduce `k` even more, we know that in the current state we
cannot remove any animal, but we can remove some examinations from the
animals by divide the remaining `k` by the remaining animals.
- Finally, the remaining `k` will be less than 10^5, so we can brute force
it.
*/
#include <bits/stdc++.h>
using namespace std;
int const N = 1e5 + 10;
int n, a[N];
long long k, to, tt;
vector<int> v;
map<int, int> mp;
queue<pair<int, int> > q;
int main() {
scanf("%d %lld", &n, &k);
for(int i = 0; i < n; ++i) {
scanf("%d", a + i);
v.push_back(a[i]);
++mp[a[i]];
to += a[i];
}
if(to < k) {
puts("-1");
return 0;
}
sort(v.begin(), v.end());
v.resize(unique(v.begin(), v.end()) - v.begin());
int cnt = n;
for(int i = 0, prv = 0; i < v.size(); ++i) {
if(k >= 1ll * (v[i] - prv) * cnt) {
k -= 1ll * (v[i] - prv) * cnt;
tt += (v[i] - prv);
cnt -= mp[v[i]];
} else
break;
prv = v[i];
}
for(int i = 0; i < n; ++i)
a[i] -= tt, a[i] = max(0, a[i]);
if(cnt == 0)
return 0;
int rem = k / cnt;
k -= 1ll * rem * cnt;
for(int i = 0; i < n; ++i)
if(a[i] > 0)
a[i] -= rem, q.push({a[i], i + 1});
for(int i = 0; i < k; ++i) {
pair<int, int> p = q.front();
q.pop();
if(--p.first == 0)
continue;
q.push(p);
}
while(!q.empty()) {
printf("%d ", q.front().second);
q.pop();
}
puts("");
return 0;
}