0_0_32287245_15439.cpp:11:10: error: #include expects "FILENAME" or <FILENAME>
#include
^
0_0_32287245_15439.cpp:12:10: error: #include expects "FILENAME" or <FILENAME>
#include
^
0_0_32287245_15439.cpp:13:10: error: #include expects "FILENAME" or <FILENAME>
#include
^
0_0_32287245_15439.cpp:14:10: error: #include expects "FILENAME" or <FILENAME>
#include
^
0_0_32287245_15439.cpp:15:10: error: #include expects "FILENAME" or <FILENAME>
#include
^
0_0_32287245_15439.cpp:16:10: error: #include expects "FILENAME" or <FILENAME>
#include
^
0_0_32287245_15439.cpp:17:10: error: #include expects "FILENAME" or <FILENAME>
#include
^
0_0_32287245_15439.cpp:18:10: error: #include expects "FILENAME" or <FILENAME>
#include
^
0_0_32287245_15439.cpp:19:10: error: #include expects "FILENAME" or <FILENAME>
#include
^
0_0_32287245_15439.cpp:23:9: error: 'pairPII' does not name a type
typedef pairPII;
^
0_0_32287245_15439.cpp:25:29: error: 'acos' was not declared in this scope
const double PI = acos(-1.0);
^
0_0_32287245_15439.cpp:29:1: error: 'vectoradj' does not name a type
vectoradj[MAXN];
^
0_0_32287245_15439.cpp: In function 'void buildBinTree(int, int)':
0_0_32287245_15439.cpp:49:21: error: 'adj' was not declared in this scope
for (e = 0; e < adj[u].size(); ++e) {
^
0_0_32287245_15439.cpp:58:17: error: 'adj' was not declared in this scope
for ( ; e < adj[u].size(); ++e) {
^
0_0_32287245_15439.cpp: In function 'void dfs(int)':
0_0_32287245_15439.cpp:72:51: error: 'max' was not declared in this scope
f[u][v] = max(f[u][v], power[u][j]);
^
0_0_32287245_15439.cpp:81:61: error: 'max' was not declared in this scope
f[u][i] = max(f[u][i], f[u][i-j] + f[son][j]);
^
0_0_32287245_15439.cpp:91:61: error: 'min' was not declared in this scope
tmp = max(tmp, min(f[u][i-j] , f[brother][j]));
^
0_0_32287245_15439.cpp:91:62: error: 'max' was not declared in this scope
tmp = max(tmp, min(f[u][i-j] , f[brother][j]));
^
0_0_32287245_15439.cpp: In function 'int main()':
0_0_32287245_15439.cpp:100:23: error: 'scanf' was not declared in this scope
scanf("%d", &nCase);
^
0_0_32287245_15439.cpp:106:13: error: 'adj' was not declared in this scope
adj[i].clear();
^
0_0_32287245_15439.cpp:111:13: error: 'adj' was not declared in this scope
adj[u].push_back(v);
^
0_0_32287245_15439.cpp:125:31: error: 'memset' was not declared in this scope
memset(f, 0, sizeof(f));
^
0_0_32287245_15439.cpp:127:31: error: 'printf' was not declared in this scope
printf("%d\n", f[1][m]);
^
|