-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCuanto.cpp
76 lines (67 loc) · 1.76 KB
/
Cuanto.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
/*
Tema: Búsqueda binaria
Problema: ¿De cuánto nos toca?
Link: https://omegaup.com/arena/IOI2017E1P3/practice/#problems/cuanto
Ojo: si no los deja entrar, inicien sesión y hagan clic
en iniciar concurso en https://omegaup.com/arena/IOI2017E1P3#problems
y vuelvan a picar en link del problema
*/
// #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;
const int MAXN = 100002;
int N, A; // n -> número de barras y a-> el número de amigos
int arr[MAXN];
// cuanto regresa cuántos barritas de chocolate de x cuadritos
// puedo formar de mis barras iniciales
int cuanto(int x) {
int res = 0;
for (int i = 0; i < N; ++i) {
res += arr[i] / x; // e.g. si arr[i] = 7, x = 3, puedo empaquetar 2 barritas de 3 cuadritos
}
return res;
}
int main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
cin >> N >> A;
// Leer N números
int Nmax = 0;
for (int i = 0; i < N; ++i) {
cin >> arr[i];
Nmax = max(Nmax, arr[i]);
}
// Empezar mi búsqueda binaria
int l = 0, r = Nmax;
while (l < r) {
int med = (l + r + 1) / 2;
if (cuanto(med) >= A) {
// Sí puedo repartir med cuadritos a mis N amigos
// [l, r] => [med, r]
l = med;
} else {
// No puedo
// [l, r] => [l, med-1]
r = med - 1;
}
}
// [.x] => [.]
int ans = l;
cout << ans << "\n";
return 0;
}