# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
149103 | nandonathaniel | Arranging Shoes (IOI19_shoes) | C++14 | 1051 ms | 3580 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "shoes.h"
#include <bits/stdc++.h>
using namespace std;
typedef long long LL;
LL a[100],V[100];
long long count_swaps(vector<int> s) {
LL n=(LL)s.size(),now=0;
n/=2;
for(LL i=0;i<s.size();i++){
if(s[i]>0){
now++;
a[now]=s[i];
V[now]=now;
}
}
vector<int> t=s;
LL ans=1e18;
do{
s=t;
LL res=0;
vector<LL> hasil;
for(LL i=1;i<=n;i++){
hasil.push_back(-a[V[i]]);
hasil.push_back(a[V[i]]);
}
//for(LL i=1;i<=2*n;i++)cout << hasil[i-1] << endl;
for(LL i=0;i<s.size();i++){
LL no;
for(LL j=i;j<s.size();j++){
if(s[j]==hasil[i]){
no=j;
break;
}
}
for(LL j=no;j>=i+1;j--){
swap(s[j],s[j-1]);
res++;
}
}
ans=min(ans,res);
}while(next_permutation(V+1,V+n+1));
return 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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |