shortcut.cpp:10:6: error: 'N' was not declared in this scope
ll r[N],d[N],n,cost;
^
shortcut.cpp:10:11: error: 'N' was not declared in this scope
ll r[N],d[N],n,cost;
^
shortcut.cpp: In function 'll solve(ll, ll)':
shortcut.cpp:14:10: error: 'r' was not declared in this scope
chmax(x,r[p]-r[i]+d[i]);
^
shortcut.cpp:9:28: note: in definition of macro 'chmax'
#define chmax(a,b) a=max(a,b)
^
shortcut.cpp:14:20: error: 'd' was not declared in this scope
chmax(x,r[p]-r[i]+d[i]);
^
shortcut.cpp:9:28: note: in definition of macro 'chmax'
#define chmax(a,b) a=max(a,b)
^
shortcut.cpp:18:10: error: 'r' was not declared in this scope
chmax(y,r[i]-r[q]+d[i]);
^
shortcut.cpp:9:28: note: in definition of macro 'chmax'
#define chmax(a,b) a=max(a,b)
^
shortcut.cpp:18:20: error: 'd' was not declared in this scope
chmax(y,r[i]-r[q]+d[i]);
^
shortcut.cpp:9:28: note: in definition of macro 'chmax'
#define chmax(a,b) a=max(a,b)
^
shortcut.cpp:22:14: error: 'd' was not declared in this scope
chmax(ans,x+d[i]+min(r[i]-r[p],r[q]-r[i]+cost));
^
shortcut.cpp:9:28: note: in definition of macro 'chmax'
#define chmax(a,b) a=max(a,b)
^
shortcut.cpp:22:23: error: 'r' was not declared in this scope
chmax(ans,x+d[i]+min(r[i]-r[p],r[q]-r[i]+cost));
^
shortcut.cpp:9:28: note: in definition of macro 'chmax'
#define chmax(a,b) a=max(a,b)
^
shortcut.cpp:27:15: error: 'r' was not declared in this scope
rs.push_back(r[i]-r[p]);
^
shortcut.cpp:28:15: error: 'd' was not declared in this scope
ds.push_back(d[i]);
^
shortcut.cpp:31:15: error: 'r' was not declared in this scope
rs.push_back(r[i]-r[p]+cost+r[q]-r[p]);
^
shortcut.cpp:32:15: error: 'd' was not declared in this scope
ds.push_back(d[i]);
^
shortcut.cpp:34:17: error: 'r' was not declared in this scope
ll key=cost+r[q]-r[p];
^
shortcut.cpp:34:17: note: suggested alternative: 'rs'
ll key=cost+r[q]-r[p];
^
rs
shortcut.cpp:37:18: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(int i=0;i<rs.size()/2;i++){
~^~~~~~~~~~~~
shortcut.cpp: In function 'll find_shortcut(int, std::vector<int>, std::vector<int>, int)':
shortcut.cpp:52:25: error: 'd' was not declared in this scope
for(int i=0;i<n;i++)d[i]=dd[i];
^
shortcut.cpp:53:5: error: 'r' was not declared in this scope
r[0]=0;
^