# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
200389 | Leonardo_Paes | Arranging Shoes (IOI19_shoes) | C++17 | 1095 ms | 376 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int maxn = 1e5+10;
bool mark[maxn];
long long count_swaps(vector<int> s){
int n = s.size();
int ans = 0, cnt = 0;
while(cnt != n/2){
for(int i=0; i<n; i++){
if(s[i] < 0 and !mark[s[i]]){
if(i+1 < n and s[i+1] == -s[i] and !mark[s[i]]) mark[s[i]] = 1, cnt++;
else{
int aux;
for(int j=0; j<n; j++){
if(s[j] == -s[i]) aux = j;
}
bool ok = false;
while(aux < i){
swap(s[aux], s[aux+1]);
aux++;
ans++;
ok = 1;
}
if(!ok){
while(aux > i){
if(aux == i+1) break;
swap(s[aux], s[aux-1]);
aux--;
ans++;
}
}
}
}
}
}
return ans;
}
/*int main(){
int n;
cin >> n;
vector<int> s;
for(int i=1; i<=n; i++){
int x;
cin >> x;
s.push_back(x);
}
cout << count_swaps(s) << 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... |