# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
331230 | pggp | Arranging Shoes (IOI19_shoes) | C++14 | 99 ms | 69760 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int sgn(int x){
if(x > 0 ) return 1;
return - 1;
}
long long count_swaps(vector < int > S){
// Najpierw przenumerowanie
set < int > sizes_set;
vector < int > sizes_original;
map < int, int > map_sizes;
bool b = true;
for (int i = 0; i < S.size()/2; ++i)
{
if(S[i] != -S[i + S.size()/2] or S[i] > 0){
b = false;
}
}
if(b){
long long n = S.size()/2;
return n * (n - 1) / 2;
}
// Na początku zamiany wewnętrzne
long long interial = 0;
컴파일 시 표준 에러 (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... |