제출 #1047848

#제출 시각아이디문제언어결과실행 시간메모리
1047848Maite_Morale도로 폐쇄 (APIO21_roads)C++17
컴파일 에러
0 ms0 KiB
#include <bits/stdc++.h> using namespace std; typedef long long ll; #define vll vector<ll> #define MAX 500005 #define oo 1e18 #define pll pair<ll,ll> #define F first #define S second const ll bts=20; pll p[MAX],s[bts+10][MAX],t[bts+10][MAX]; ll d[MAX],N; pll query(ll x,ll y){ if(x>y)return {0,N}; ll c=log2l(abs(x-y)+1); return max(t[c][x],t[c][y-(1LL<<c)+1]); } void init(int n, std::vector<int> H) { H.push_back(0);N=n;pll rt={0,n}; for(int i=0;i<=n;i++){ t[0][i]={H[i],i}; rt=max(rt,t[0][i]); } for(int i=1;i<=bts;i++){ for(int j=0;j<=n;j++){ t[i][j]=max(t[i-1][j],t[i-1][j+(1LL<<(i-1))]); } } queue<pair<ll,pll>> q; q.push({rt.S,{0,n-1}}); d[n]=0;s[0][n]={n,n}; d[rt.S]=1;s[0][rt.S]={n,n}; ll c54=0; while(!q.empty()){ pair<ll,pll> u=q.front();q.pop(); // cout<<u.F<<" "<<u.S.F<<" "<<u.S.S<<"\n"; c54++;if(c54==20)break; pair<ll,pll> h1={query(u.S.F,u.F-1).S,{u.S.F,u.F-1}}; //cout<<h1.F<<" "<<h1.S.F<<" "<<h1.S.S<<"\n"; if(h1.F!=n){ d[h1.F]=d[u.F]+1; p[h1.F]={h1.S.F-1,h1.S.S+1}; s[0][h1.F].F=u.S.F-1; s[0][h1.F].S=u.F; q.push(h1); } pair<ll,pll> h2={query(u.F+1,u.S.S).S,{u.F+1,u.S.S}}; //cout<<h2.F<<" "<<h2.S.F<<" "<<h2.S.S<<"\n"; if(h2.F!=n){ d[h2.F]=d[u.F]+1; p[h2.F]={h2.S.F-1,h2.S.S+1}; s[0][h2.F].F=u.S.S+1; s[0][h2.F].S=u.F; q.push(h2); } } for(int i=0;i<=n;i++){ if(s[0][i].F==-1)s[0][i].F=n; if(s[0][i].S==-1)s[0][i].S=n; } for(int i=1;i<=bts;i++){ for(int j=0;j<=n;j++){ s[i][j].F=s[i-1][s[i-1][j].F].F; s[i][j].S=s[i-1][s[i-1][j].S].S; } } } int minimum_jumps(int A, int B, int C, int D) { swap(B,C); if(A<=p[B].F)return -1; ll r=0; for(int i=bts;i>=0;i--){ if(d[s[i][A].F]>=d[B]){ r+=(1LL<<i); A=s[i][A].F; } } for(int i=bts;i>=0;i--){ if(d[s[i][A].S]>=d[B]){ r+=(1LL<<i); A=s[i][A].S; } } return r; }

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

/usr/bin/ld: /tmp/ccYtvrZz.o: in function `main':
grader.cpp:(.text.startup+0x277): undefined reference to `minimum_closure_costs(int, std::vector<int, std::allocator<int> >, std::vector<int, std::allocator<int> >, std::vector<int, std::allocator<int> >)'
collect2: error: ld returned 1 exit status