이 제출은 이전 버전의 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;
#include<iostream>
struct segtree
{
ll dat[800010];
void SI(int n,int s,int e,int x,int p)
{
dat[n]+=p;
if(s==e)
return;
int m=s+e>>1;
if(x>m)
SI(n*2+1,m+1,e,x,p);
else
SI(n*2,s,m,x,p);
return;
}
ll SS(int n,int s,int e,int S,int E)
{
if(s>E||S>e)
return 0;
if(S<=s&&e<=E)
return dat[n];
int m=s+e>>1;
return SS(n*2,s,m,S,E)+SS(n*2+1,m+1,e,S,E);
}
}ST;
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++)
{
ST.SI(1,0,n*2-1,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();
ST.SI(1,0,n*2-1,i,-1);
ST.SI(1,0,n*2-1,t,-1);
if(i<t)
ans+=ST.SS(1,0,n*2-1,i,t);
else
ans+=ST.SS(1,0,n*2-1,t,i)+1;
}
}
return ans;
}
컴파일 시 표준 에러 (stderr) 메시지
shoes.cpp: In member function 'void segtree::SI(int, int, int, int, int)':
shoes.cpp:22:10: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
int m=s+e>>1;
~^~
shoes.cpp: In member function 'll segtree::SS(int, int, int, int, int)':
shoes.cpp:35:10: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
int m=s+e>>1;
~^~
# | 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... |