0_0_25982048_4460.cpp:15:1: error: 'vector' does not name a type
vector<int> pri[N];
^
0_0_25982048_4460.cpp: In function 'void init()':
0_0_25982048_4460.cpp:20:9: error: 'pri' was not declared in this scope
pri[i].clear();
^
0_0_25982048_4460.cpp:22:12: error: 'pri' was not declared in this scope
if(pri[i].size()==0)
^
0_0_25982048_4460.cpp: In function 'void hunt()':
0_0_25982048_4460.cpp:35:23: error: 'pri' was not declared in this scope
for(int j=0;j<pri[now].size();j++)
^
0_0_25982048_4460.cpp:38:41: error: 'max' was not declared in this scope
res[i].x=max(res[i].x,pre[t]);
^
0_0_25982048_4460.cpp:38:41: note: suggested alternative:
In file included from GCC4.9.2/x86_64-w64-mingw32/include/c++/algorithm:62:0,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/x86_64-w64-mingw32/bits/stdc++.h:64,
from 0_0_25982048_4460.cpp:1:
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_algo.h:3454:5: note: 'std::max'
max(initializer_list<_Tp> __l, _Compare __comp)
^
0_0_25982048_4460.cpp:39:46: error: 'min' was not declared in this scope
res[pre[t]].y=min(res[pre[t]].y,i);
^
0_0_25982048_4460.cpp:39:46: note: suggested alternative:
In file included from GCC4.9.2/x86_64-w64-mingw32/include/c++/algorithm:62:0,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/x86_64-w64-mingw32/bits/stdc++.h:64,
from 0_0_25982048_4460.cpp:1:
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_algo.h:3444:5: note: 'std::min'
min(initializer_list<_Tp> __l, _Compare __comp)
^
0_0_25982048_4460.cpp: In function 'void solve()':
0_0_25982048_4460.cpp:73:27: error: 'sort' was not declared in this scope
sort(query+1,query+1+m);
^
0_0_25982048_4460.cpp:73:27: note: suggested alternative:
In file included from GCC4.9.2/x86_64-w64-mingw32/include/c++/algorithm:62:0,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/x86_64-w64-mingw32/bits/stdc++.h:64,
from 0_0_25982048_4460.cpp:1:
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_algo.h:4705:5: note: 'std::sort'
sort(_RandomAccessIterator __first, _RandomAccessIterator __last,
^
|