# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
531772 | devariaota | Arranging Shoes (IOI19_shoes) | C++17 | 150 ms | 137340 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
# include <bits/stdc++.h>
using namespace std;
int bit[200005];
queue<int> q[200005];
const int OFFSET = 100000;
int maxn;
int lsone(int x) { return x&(-x); }
int off(int x) { return x+OFFSET; }
int get(int x){
x++;
int res = 0;
for(int i=x; i>0; i-=lsone(i))
res += bit[i];
return res;
}
int get(int l, int r){
return get(r) - get(l);
}
void update(int x, int val){
x++;
for(int i=x; i<=maxn; i+=lsone(i))
bit[i] += val;
}
long long count_swaps(vector<int> shoes){
long long ans = 0;
maxn = shoes.size();
for(int r=0; r<shoes.size(); r++){
int x = shoes[r];
if(!q[off(-x)].empty()){
int l = q[off(-x)].front();
q[off(-x)].pop();
ans += (r-l);
if(x > 0) ans--;
ans -= get(l, r);
update(l, -1);
}
else {
q[off(x)].push(r);
update(r, +1);
}
}
return ans;
}
// int main(){
// int n; cin >> n;
// vector<int> shoes(n);
// for(int i=0; i<n; i++){
// cin >> shoes[i];
// }
// cout << count_swaps(shoes) << endl;
// }
컴파일 시 표준 에러 (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... |