# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
95827 | Kastanda | Candies (JOI18_candies) | C++11 | 3 ms | 504 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
const int N = 200005;
int n, L[N], R[N];
ll A[N];
set < pair < ll , int > > S;
int main()
{
scanf("%d", &n);
for (int i = 1; i <= n; i++)
{
scanf("%lld", &A[i]);
L[i] = i - 1; R[i] = i + 1;
S.insert({A[i], i});
}
ll Mx = 0;
for (int i = 0; i < (n + 1 >> 1); i++)
{
int id = S.rbegin()->second;
S.erase(*S.rbegin());
Mx += A[id];
printf("%lld\n", Mx);
int le = L[id], ri = R[id];
if (le <= 0 || ri > n)
{
S.erase({A[le], le});
S.erase({A[ri], ri});
L[R[ri]] = 0;
R[L[le]] = 0;
continue;
}
ll tobe = 0;
L[id] = L[le];
S.erase({A[le], le});
tobe += A[le];
R[id] = R[ri];
S.erase({A[ri], ri});
tobe += A[ri];
tobe -= A[id];
L[R[id]] = id;
R[L[id]] = id;
A[id] = tobe;
S.insert({A[id], id});
}
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |