-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSCTDL025.cpp
51 lines (47 loc) · 1.08 KB
/
SCTDL025.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
/**
* @file SCTDL025.cpp
* @author long ([email protected])
* @brief consecutive sub array that has largest sum
* Kadane's algorithm
* @version 0.1
* @date 2023-02-27
*
* @copyright Copyright (c) 2023
*
*/
#include<iostream>
#include<climits>
using namespace std;
#define MAX 10000000
int main() {
int t;
cin >> t;
while(t--) {
int n, arr[MAX];
cin >> n;
for(int i = 0; i< n; i++)
{
cin >> arr[i];
}
int max_so_far = INT_MIN;
int max_ending_here = 0;
int start{0}, end{0}, s{0};
for(int i=0; i<n; i++)
{
max_ending_here += arr[i];
if(max_so_far < max_ending_here)
{
max_so_far = max_ending_here;
start = s;
end = i;
}
if(max_ending_here < 0)
{
max_ending_here = 0;
s = i + 1;
}
}
cout << max_so_far << endl;
// cout << "Starting index " << start << endl << "Ending index " << end << endl;
}
}