# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
293935 | humbertoyusta | Arranging Shoes (IOI19_shoes) | C++14 | 38 ms | 8060 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "shoes.h"
#include<bits/stdc++.h>
using namespace std;
//#define int long long
#define maxn 100010
#define f first
#define s second
#define db(x) cerr << #x << ": " << (x) << '\n';
int abi[maxn], n;
long long ans, lans;
pair<pair<int,int>,int> a[maxn];
void update(int id){
for( ; id > 0; id -= ( id & -id ) )
abi[id] ++;
}
int query(int id){
int res = 0;
for( ; id <= n; id += ( id & -id ) )
res += abi[id];
return res;
}
long long count_swaps(std::vector<int> s) {
n = (int)s.size();
for(int i=0; i<n; i++){
a[i+1].f.f = abs( s[i] );
a[i+1].f.s = i + 1;
a[i+1].s = s[i];
}
for(int i=1; i<=n; i++){//db(a[i].f.f)
ans += query(a[i].f.f+1);
update(a[i].f.f);
}
sort(a+1,a+n+1);
int c1, c2, l;
for(int i=1; i<=n; i++){
if( a[i].f.f != a[i-1].f.f ){
c1 = 0, c2 = 0, l = i;
}
if( a[i].s < 0 ){
int pos = l + c1 * 2;
lans += abs( i - pos );
c1++;
}
if( a[i].s > 0 ){
int pos = l + 1 + c2 * 2;
lans += abs( i - pos );
c2++;
}
}
return ans + ( lans ) / 2;
}
컴파일 시 표준 에러 (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... |