This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <iostream>
#define MAX_N 100000
using namespace std;
int x[MAX_N + 1], g[MAX_N + 1], d[MAX_N + 1];
int main() {
int n, i, j;
long long sg, sd, maxG;
cin >> n;
for ( i = 1; i <= n; i++ )
cin >> x[i] >> g[i] >> d[i];
maxG = 0;
for ( i = 1; i <= n; i++ ) {
sg = sd = 0;
for ( j = i; j <= n; j++ ) {
sg += g[j];
sd += d[j];
if ( x[j] - x[i] <= sd ) {
if ( sg > maxG )
maxG = sg;
}
}
}
cout << maxG;
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |