이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "shoes.h"
#include<bits/extc++.h>
#include<bits/stdc++.h>
using namespace __gnu_pbds;
using namespace std;
queue<int> otherpos[100100];
long long calc(vector<int>v){
long long ans=0;
int K=0;
tree<int,null_type,less<>,rb_tree_tag,tree_order_statistics_node_update>st;
for(auto i:v) {
st.insert(i);
ans+=K++-st.order_of_key(i);
}
return ans;
}
long long count_swaps(std::vector<int> s) {
long long ans=0;
int n=s.size()>>1;
vector<int>sup;
int CC=0;
for(int i=0;i<n*2;i++) if(s[i]<0)
otherpos[-s[i]].push(i);
CC=0;
vector<pair<int,int>> thgs;
for(int i=0;i<n*2;i++) if(s[i]>0) {
int x=otherpos[s[i]].front();
thgs.push_back({x,i});
otherpos[s[i]].pop();
}
for(auto&[i,j]:thgs)
if(i>j)
ans++,swap(i,j);
sort(thgs.begin(),thgs.end());
for(auto[i,j]:thgs)
sup.push_back(i),
sup.push_back(j);
return ans+calc(sup);
}
컴파일 시 표준 에러 (stderr) 메시지
shoes.cpp: In function 'long long int count_swaps(std::vector<int>)':
shoes.cpp:21:9: warning: variable 'CC' set but not used [-Wunused-but-set-variable]
21 | int CC=0;
| ^~
# | 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... |