0_0_24954875_10960.cpp:20:9: error: 'vector' does not name a type
typedef vector<int> VI;
^
0_0_24954875_10960.cpp:21:9: error: 'pair' does not name a type
typedef pair<int,int> PII;
^
0_0_24954875_10960.cpp:24:1: error: 'bitset' does not name a type
bitset<N> vis;int p[M];int tot = 0;
^
0_0_24954875_10960.cpp: In function 'void getPrime(int)':
0_0_24954875_10960.cpp:27:14: error: 'vis' was not declared in this scope
if (!vis[i]) p[++tot] = i;
^
0_0_24954875_10960.cpp:29:13: error: 'vis' was not declared in this scope
vis[i*p[j]] = true;
^
0_0_24954875_10960.cpp: In function 'int solve(int)':
0_0_24954875_10960.cpp:38:43: error: 'upper_bound' was not declared in this scope
en = upper_bound(p+1, p+tot, n/val)-p;
^
0_0_24954875_10960.cpp:38:43: note: suggested alternative:
In file included from GCC4.9.2/x86_64-w64-mingw32/include/c++/algorithm:62:0,
from 0_0_24954875_10960.cpp:4:
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_algo.h:2111:5: note: 'std::upper_bound'
upper_bound(_ForwardIterator __first, _ForwardIterator __last,
^
|