# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
266615 | doowey | Arranging Shoes (IOI19_shoes) | C++14 | 349 ms | 275320 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "shoes.h"
using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
#define fi first
#define se second
#define mp make_pair
const int N = (int)2e5 + 10;
queue<int> pos[2][N];
bool active[N];
int lim;
int tree[N * 2];
void upd(int x, int v){
x += lim;
tree[x]=v;
x /= 2;
while(x > 0){
tree[x]=tree[x*2]+tree[x*2+1];
x /= 2;
}
}
int get(int l, int r){
l += lim;
r += lim;
int res = 0;
while(l <= r){
if(l % 2 == 1) res += tree[l++];
if(r % 2 == 0) res += tree[r--];
l /= 2;
r /= 2;
}
return res;
}
ll count_swaps(vector<int> s) {
lim = (int)s.size();
int n = (int)s.size() / 2;
for(int i = 0 ; i < s.size(); i ++ ){
if(s[i] < 0){
pos[0][-s[i]].push(i);
}
else{
pos[1][s[i]].push(i);
}
active[i]=true;
upd(i, 1);
}
ll res = 0;
int d, x;
int nx;
for(int i = 0 ; i < s.size(); i ++ ){
if(!active[i]) continue;
x = s[i];
d = 1;
if(x < 0){
x = -x;
d = 0;
}
nx = pos[(d ^ 1)][x].front();
pos[(d ^ 1)][x].pop();
pos[d][x].pop();
res += get(i + 1, nx - 1) + d;
active[i]=false;
active[nx]=false;
upd(i,0);
upd(nx,0);
}
return res;
}
컴파일 시 표준 에러 (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... |