-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathoverdrive.cpp
67 lines (54 loc) · 1.12 KB
/
overdrive.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
# include <fstream>
# include <algorithm>
# define NR 70000
using namespace std;
ifstream f("overdrive.in");
ofstream g("overdrive.out");
int i,j,n,v1,a[NR],VV1,VV2;
long long S, suma, ci, cs, mij, sol, a1[NR], a2[NR];
void submultimi (int k, int maxx)
{
if (k==maxx+1)
{
if (maxx==v1) a1[++VV1]=suma;
if (maxx==n) a2[++VV2]=suma;
}
else {
submultimi (k+1, maxx); //nu il iau
suma+=a[k];
submultimi (k+1, maxx); //il iau
suma-=a[k];
}
}
bool verifica (long long K)
{
int I=VV2;
for (i=1; i<=VV1; ++i) {
while (I>=0 && a1[i] + a2[I]>K)
--I;
if (a1[i] + a2[I]<=K && S-a1[i]-a2[I]<=K) return 1; //solutie
}
return 0;
}
int main ()
{
f>>n;
for (i=1; i<=n; ++i) {
f>>a[i];
S+=a[i];
}
v1=n/2;
submultimi (1, v1);
submultimi (v1+1, n);
sort (a1+1, a1+VV1+1);
sort (a2+1, a2+VV2+1);
ci=1; cs=S;
while (ci<=cs)
{
mij=(ci+cs)/2;
if (verifica (mij)) sol=mij, cs=mij-1;
else ci=mij+1;
}
g<<sol<<"\n";
return 0;
}