제출 #242889

#제출 시각아이디문제언어결과실행 시간메모리
242889uacoder123Arranging Shoes (IOI19_shoes)C++14
컴파일 에러
0 ms0 KiB
 #include <bits/stdc++.h>
using namespace std;
#define F first
#define S second
#define FOR(i,a,b) for (auto i = (a); i <= (b); ++i)
#define NFOR(i,a,b) for(auto i = (a); i >= (b); --i)
#define all(x) (x).begin(), (x).end()
#define sz(x) int(x.size())
#define mp(i,a) make_pair(i,a)
#define pb(a) push_back(a)
#define bit(x,b) (x&(1LL<<b))
 
typedef int lli;
typedef pair <lli,lli> ii;
typedef pair <lli,ii> iii;
typedef vector <lli> vi;
int segt[8*100000]={};
void up(int node,int l,int r,int in)
{
  if(l==r)
  {
    segt[node]=1;
    return;
  }
  int m=(l+r)/2;
  if(in<=m)
    up(2*node+1,l,m,in);
  else
    up(2*node+2,m+1,r,in);
  segt[node]=segt[2*node+1]+segt[2*node+2];
}
int qu(int node,int l,int r,int s,int e)
{
  if(l>=s&&r<=e)
    return(segt[node]);
  if(l>e||r<s)
    return(0);
  int m=(l+r)/2;
  int q1=qu(2*node+1,l,m,s,e),q2=qu(2*node+2,m+1,r,s,e);
  return(q1+q2);
}
int64_t count_swaps(int[] hu)
{
  int n=sizeof(hu)/sizeof(int),f,ans=0;
  set<ii>inva,vain;
  for(int i=0;i<n;++i)
  {
    f=hu[i];
    if(f<0)
      f=abs(f)+n/2;
    inva.insert(mp(i,f));
    vain.insert(mp(f,i));
  }
  while(inva.size())
  {
    ii it,f=(*inva.begin());
    inva.erase(inva.begin());
    vain.erase(mp(f.S,f.F));
    f.F+=qu(0,0,n-1,f.F,n-1);
    if(f.S>n/2)
      it=(*vain.lower_bound(mp(f.S-n/2,0)));
    else
      it=(*vain.lower_bound(mp(f.S+n/2,0)));
    vain.erase(it);
    inva.erase(mp(it.S,it.F));
    it.S+=qu(0,0,n-1,it.S,n-1);
    up(0,0,n-1,it.S);
    ans+=it.S-f.F-1;
    if(f.S<=n/2)
      ans++;
  }
  return(ans);
}

컴파일 시 표준 에러 (stderr) 메시지

shoes.cpp:42:27: error: expected ',' or '...' before 'hu'
 int64_t count_swaps(int[] hu)
                           ^~
shoes.cpp: In function 'int64_t count_swaps(int*)':
shoes.cpp:44:16: error: 'hu' was not declared in this scope
   int n=sizeof(hu)/sizeof(int),f,ans=0;
                ^~
shoes.cpp:44:16: note: suggested alternative: 'qu'
   int n=sizeof(hu)/sizeof(int),f,ans=0;
                ^~
                qu
shoes.cpp:48:5: error: 'f' was not declared in this scope
     f=hu[i];
     ^
shoes.cpp:68:5: error: 'ans' was not declared in this scope
     ans+=it.S-f.F-1;
     ^~~
shoes.cpp:68:5: note: suggested alternative: 'abs'
     ans+=it.S-f.F-1;
     ^~~
     abs
shoes.cpp:72:10: error: 'ans' was not declared in this scope
   return(ans);
          ^~~
shoes.cpp:72:10: note: suggested alternative: 'abs'
   return(ans);
          ^~~
          abs