# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
758357 | KN200711 | 금 캐기 (IZhO14_divide) | C++14 | 1 ms | 304 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
# include <bits/stdc++.h>
# define ll long long
# define fi first
# define se second
using namespace std;
int main() {
int N;
scanf("%d", &N);
vector<int> x(N), y(N), z(N);
for(int i=0;i<N;i++) scanf("%d %d %d", &x[i], &y[i], &z[i]);
ll pref = 0ll;
vector< pair<ll, ll> > as;
as.clear();
ll ans = 0ll, nw = 0ll;
for(int i=0;i<N;i++) {
if(as.size() == 0 || as.back().fi > pref - 1ll * x[i]) as.push_back(make_pair(-pref + 1ll * x[i], nw));
nw += y[i];
pref += z[i];
ll ck = pref - x[i];
// cout<<ck<<endl;
int P = lower_bound(as.begin(), as.end(), make_pair(-ck, 0ll)) - as.begin();
ans = max(ans, nw - as[P].se);
}
printf("%lld\n", ans);
return 0;
}
컴파일 시 표준 에러 (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... |