# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
37391 | 2017-12-25T03:51:37 Z | adlet | 금 캐기 (IZhO14_divide) | C++14 | 0 ms | 4748 KB |
#include <bits/stdc++.h> using namespace std; typedef long long ll; const int N = 1e5 + 5; int n, x[N], g[N], e[N]; ll de[N], dg[N], ans; int main() { freopen("divide.in", "r", stdin); freopen("divide.out", "w", stdout); cin >> n; for (int i = 1; i <= n; ++i) { cin >> x[i] >> g[i] >> e[i]; dg[i] += dg[i - 1] + g[i]; de[i] += de[i - 1] + e[i]; } for (int l = 1; l <= n; ++l) { for (int r = l; r <= n; ++r) { int len = x[r] - x[l]; // cout << l << " " << r << " " << dg[r] - dg[l - 1] << "\n"; if (len <= de[r] - de[l - 1] && dg[r] - dg[l - 1] > ans) { ans = dg[r] - dg[l - 1]; } } } cout << ans; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 0 ms | 4748 KB | Execution killed because of forbidden syscall [unknown syscall - gap in table] (292) |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 0 ms | 4748 KB | Execution killed because of forbidden syscall [unknown syscall - gap in table] (292) |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 0 ms | 4748 KB | Execution killed because of forbidden syscall [unknown syscall - gap in table] (292) |
2 | Halted | 0 ms | 0 KB | - |