이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#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... |