# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
37816 | Just_Solve_The_Problem | 금 캐기 (IZhO14_divide) | C++11 | 1000 ms | 5920 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define ll long long
const int N = (int)1e5 + 7;
ll x[N], g[N], d[N];
ll pg[N], pd[N];
bool check (int l, int r) {
return x[r] - x[l] <= pd[r] - pd[l - 1];
}
main () {
int n; scanf ("%d", &n);
for (int i = 1; i <= n; i++) {
scanf ("%lld %lld %lld", x + i, g + i, d + i);
}
for (int i = 1; i <= n; i++) {
pg[i] = pg[i - 1] + g[i];
pd[i] = pd[i - 1] + d[i];
}
ll ans = 0;
int cnt = 0;
for (int i = 1; i <= n; i++) {
if (pg[n] - pg[i - 1] <= ans) continue;
for (int j = i; j <= n; j++) {
if (check(i, j)) {
ans = max(ans, pg[j] - pg[i - 1]);
}
cnt++;
}
if (cnt > 9e8) break;
}
cout << ans;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |