# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
253510 | Badrangiikh | Arranging Shoes (IOI19_shoes) | C++14 | 1098 ms | 2296 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#include <deque>
#include <cmath>
using namespace std;
#define ll long long
/*freopen("input.txt","r",stdin);
freopen("output.txt","w",stdout);*/
long long count_swaps ( vector < int > s ) {
int n = s . size ( ) ;
long long x = 0 ;
int y = 0 ;
while ( s . size ( ) > 0 ) {
int n = s . size ( ) ;
for ( int i = 0 ; i < n ; i ++ ) {
if ( s [ i ] < 0 ) {
y = abs ( s [ i ] ) ;
for ( int j = 0 ; j < n ; j ++ ) {
if ( s [ j ] == y ) {
if ( j > i ) {
x += ( i + j - 1 ) ;
s . erase ( s . begin ( ) + j ) ;
s . erase ( s . begin ( ) + i ) ;
}
else {
x += ( i + j ) ;
s . erase ( s . begin ( ) + i ) ;
s . erase ( s . begin ( ) + j ) ;
}
break ;
}
}
break ;
}
}
}
return x ;
}
컴파일 시 표준 에러 (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... |