| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 146013 | gs18115 | Arranging Shoes (IOI19_shoes) | C++14 | 163 ms | 71320 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include"shoes.h"
#include<queue>
#include<algorithm>
#define eb emplace_back
#define fi first
#define se second
#define all(x) (x).begin(),(x).end()
using namespace std;
typedef long long ll;
typedef pair<int,int>pi;
typedef pair<ll,ll>pl;
const ll inf=1e18;
struct fenwick
{
ll dat[200010];
inline void FI(int x,int p)
{
for(x++;x<200010;x+=x&-x)
dat[x]+=p;
return;
}
inline ll FS(int x)
{
ll ans=0;
for(;x>0;x=x&x-1)
ans+=dat[x];
return ans;
}
}FT;
queue<int>v[100010];
long long count_swaps(vector<int>s)
{
ll ans=0;
int n=s.size()/2;
int i;
for(i=0;i<n*2;i++)
{
FT.FI(i,1);
if(s[i]>0)
v[s[i]].push(i);
}
for(i=0;i<n*2;i++)
{
if(s[i]<0)
{
int t=v[-s[i]].front();
v[-s[i]].pop();
FT.FI(i,-1);
FT.FI(t,-1);
if(i<t)
ans+=FT.FS(t)-FT.FS(i);
else
ans+=FT.FS(i)-FT.FS(t)+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... | ||||
