-
Notifications
You must be signed in to change notification settings - Fork 1
/
UVa 10684.cpp
55 lines (39 loc) · 929 Bytes
/
UVa 10684.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
#include <bits/stdc++.h>
using namespace std;
#define READ(f) freopen(f, "r", stdin)
#define WRITE(f) freopen(f, "w", stdout)
#define rep(i, n) for(int i = 0 ; i < (n) ; i++)
#define iter(i, a, b) for(int i = (a) ; i < (b) ; i++)
#define mem(a, b) memset(a, b, sizeof(a))
typedef long long ll;
typedef pair< int , int > pii;
typedef pair< int , pii > iii;
typedef vector<int> vi;
typedef vector< pii > vii;
typedef map<int, int> mii;
#define INF (1 << 29)
#define PI (2.0 * acos(0.0))
#define MAXX 1000
int main(){
int n;
while(1){
scanf("%d", &n);
if(n == 0)
break;
int a[n];
for(int i = 0; i < n; i++)
scanf("%d", &a[i]);
int sum = 0, ans = 0;
for(int i = 0; i < n; i++){
sum += a[i];
ans = max(ans, sum);
if(sum < 0)
sum = 0;
}
if(ans > 0)
printf("The maximum winning streak is %d.\n", ans);
else
printf("Losing streak.\n");
}
return 0;
}