# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
671833 | moday_morning | 금 캐기 (IZhO14_divide) | C++17 | 35 ms | 5980 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define int long long
#define fr first
#define sc second
#define pb push_back
using namespace std;
const int INF = 1'000'000'000'000'000'000LL;
void usaco(string s) {
freopen((s + ".in").c_str(), "r", stdin);
freopen((s + ".out").c_str(), "w", stdout);
}
void solve() {
int n;
cin >> n;
int x[n+1], g[n+1], d[n+1];
d[0] = 0;
g[0] = 0;
for (int i = 1; i <= n; i++) {
cin >> x[i] >> g[i] >> d[i];
d[i] += d[i-1];
g[i] += g[i-1];
}
vector <pair <int, int>> a, b;
a.pb({-INF, -INF});
b.pb({-INF, -INF});
for(int i = 1; i <= n; i++) {
a.pb({d[i] - x[i], g[i]});
b.pb({d[i-1] - x[i], - g[i-1]});
}
sort(a.begin(), a.end());
sort(b.begin(), b.end());
int sb = -INF, res = 0, ans = 0, cnt = 0;
for (ans = 1; ans <= n; ans++) {
while (cnt+1 <= n && b[cnt+1].fr <= a[ans].fr) {
cnt++;
sb = max(sb, b[cnt].sc);
}
res = max(res, a[ans].sc + sb);
}
cout << res << "\n";
}
signed main() {
// usaco("triangles");
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int t = 1;
// cin >> t;
while (t--) {
solve();
}
}
컴파일 시 표준 에러 (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... |