-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathSABBIRGAME.cpp
33 lines (33 loc) · 846 Bytes
/
SABBIRGAME.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
// Ivan Carvalho
// Solution to https://www.spoj.com/problems/SABBIRGAME/
#include <cstdio>
typedef long long ll;
const int MAXN = 1e3 + 1;
const ll INF = 1e10 + 1;
const ll NEG = -INF;
int TC, n, val[MAXN];
int main() {
scanf("%d", &TC);
while (TC--) {
scanf("%d", &n);
for (int i = 1; i <= n; i++) {
scanf("%d", &val[i]);
}
ll ini = 0, fim = INF, resp = -1, meio;
while (ini <= fim) {
meio = (ini + fim) / 2;
ll temp = meio;
for (int i = 1; i <= n; i++) {
temp += val[i];
if (temp <= 0) temp = NEG;
}
if (temp > 0) {
fim = meio - 1;
resp = meio;
} else
ini = meio + 1;
}
printf("%lld\n", resp);
}
return 0;
}