-
Notifications
You must be signed in to change notification settings - Fork 0
/
SalsaLaPikina.cpp
61 lines (50 loc) · 1.23 KB
/
SalsaLaPikina.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
// #include <bits/stdc++.h>
#include <math.h>
#include <stdio.h>
#include <algorithm>
#include <iostream>
#include <map>
#include <numeric>
#include <queue>
#include <set>
#include <stack>
#include <string>
#include <unordered_set>
#include <utility>
#include <vector>
using namespace std;
typedef long long int lld;
typedef long double llf;
typedef pair<int, int> pii;
int main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
int n, k;
cin >> n >> k;
int arr[n];
for (int i = 0; i < n; ++i) {
cin >> arr[i];
}
sort(arr, arr + n);
int res_ml = -1, res_no_botellas = 0;
int necesito = 0;
int i = n;
for (int j = n - 1; j >= 0; j--) {
// Cuántas botellas puedo enviar si las llevo a arr[j]
// Antes de extender le pregunto
while (i > 0 && necesito + (arr[j] - arr[i - 1]) <= k) {
necesito += arr[j] - arr[i - 1];
i--;
}
if (res_no_botellas <= j - i + 1) {
res_no_botellas = j - i + 1;
res_ml = arr[j];
}
// Me preocupo por j
if (j > 0) {
necesito -= (arr[j] - arr[j - 1]) * (j - i);
}
}
cout << res_no_botellas << " " << res_ml << endl;
return 0;
}