이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int N = 100100;
int x[N], g[N], e[N];
long long pe[N], pg[N];
int main() {
int n;
cin >> n;
for (int i = 1; i <= n; i++) {
cin >> x[i] >> g[i] >> e[i];
pg[i] = pg[i-1]+g[i];
pe[i] = pe[i-1]+e[i];
}
long long ans = 0;
for (int r = 1; r <= n; r++) {
for (int l = 1; l <= r; l++) {
if (x[r]-pe[r] <= x[l]-pe[l-1]) {
ans = max(ans, pg[r] - pg[l-1]);
}
}
}
cout << ans << "\n";
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... |