# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
200506 | arnold518 | 즐거운 채소 기르기 (JOI14_growing) | C++14 | 28 ms | 6128 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
const int MAXN = 3e5;
int N, A[MAXN+10];
ll ans;
struct BIT
{
ll tree[MAXN+10];
BIT() { memset(tree, 0, sizeof(tree)); }
void update(int i, int v) { for(; i<=N; i+=(i&-i)) tree[i]+=v; }
ll query(int i) { ll ret=0; for(; i>0; i-=(i&-i)) ret+=tree[i]; return ret; }
} bit;
int main()
{
int i, j;
scanf("%d", &N);
for(i=1; i<=N; i++) scanf("%d", &A[i]);
vector<pii> V;
for(i=1; i<=N; i++) V.push_back({A[i], i});
sort(V.begin(), V.end());
bit=BIT();
for(i=1; i<=N; i++) bit.update(i, 1);
for(auto it : V)
{
int t=it.second;
ans+=min(bit.query(t-1), bit.query(N)-bit.query(t));
bit.update(t, -1);
}
printf("%lld", 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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |