# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
832149 | tranxuanbach | Arranging Shoes (IOI19_shoes) | C++17 | 51 ms | 16400 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "shoes.h"
#include <bits/stdc++.h>
using namespace std;
#define isz(a) ((signed)a.size())
using ll = long long;
const int N = 2e5 + 5;
int n;
int a[N];
namespace subtask6{
bool check(){
return true;
}
struct fenwick_tree{
int fen[N];
void update(int i, int x){
for (; i < N; i += i & -i){
fen[i] += x;
}
}
int query(int i){
int ans = 0;
for (; i > 0; i -= i & -i){
ans += fen[i];
}
return ans;
}
int query(int l, int r){
return query(r) - query(l - 1);
}
} fen;
vector <int> pos[N];
int final_pos[N];
ll solve(){
for (int i = 1; i <= 2 * n; i++){
pos[a[i] + n].emplace_back(i);
}
for (int val = 0; val <= 2 * n; val++){
reverse(pos[val].begin(), pos[val].end());
}
int cnt = 0;
for (int i = 1; i <= 2 * n; i++){
if (final_pos[i] != 0){
continue;
}
int val1 = a[i], val2 = -a[i];
int j = pos[val2 + n].back();
pos[val1 + n].pop_back();
pos[val2 + n].pop_back();
final_pos[i] = cnt * 2 + (val1 < 0 ? 1 : 2);
final_pos[j] = cnt * 2 + (val2 < 0 ? 1 : 2);
cnt++;
}
ll ans = 0;
for (int i = 1; i <= 2 * n; i++){
ans += fen.query(final_pos[i] + 1, 2 * n);
fen.update(final_pos[i], 1);
}
return ans;
}
}
ll count_swaps(vector <int> _a){
n = isz(_a) / 2;
for (int i = 1; i <= 2 * n; i++){
a[i] = _a[i - 1];
}
if (subtask6::check()){
return subtask6::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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |