0_0_13803869_32620.cpp:4:10: error: #include expects "FILENAME" or <FILENAME>
#include
^
0_0_13803869_32620.cpp:5:10: error: #include expects "FILENAME" or <FILENAME>
#include
^
0_0_13803869_32620.cpp:6:10: error: #include expects "FILENAME" or <FILENAME>
#include
^
0_0_13803869_32620.cpp:7:10: error: #include expects "FILENAME" or <FILENAME>
#include
^
0_0_13803869_32620.cpp:11:1: error: 'vector' does not name a type
vector edge[N];
^
0_0_13803869_32620.cpp:13:1: error: 'queue' does not name a type
queue que;
^
0_0_13803869_32620.cpp: In function 'bool query(int, int)':
0_0_13803869_32620.cpp:20:10: error: 'que' was not declared in this scope
while (!que.empty())
^
0_0_13803869_32620.cpp:24:2: error: 'que' was not declared in this scope
que.push(s);
^
0_0_13803869_32620.cpp:29:3: error: 'vector' has not been declared
vector::iterator it;
^
0_0_13803869_32620.cpp:30:8: error: 'it' was not declared in this scope
for (it = edge[k].begin(); it != edge[k].end(); it++)
^
0_0_13803869_32620.cpp:30:13: error: 'edge' was not declared in this scope
for (it = edge[k].begin(); it != edge[k].end(); it++)
^
0_0_13803869_32620.cpp: In function 'void inset(int, int)':
0_0_13803869_32620.cpp:45:2: error: 'edge' was not declared in this scope
edge[s].push_back(e);
^
0_0_13803869_32620.cpp: In function 'void deleteedge(int, int)':
0_0_13803869_32620.cpp:49:2: error: 'vector' has not been declared
vector::iterator it;
^
0_0_13803869_32620.cpp:51:7: error: 'it' was not declared in this scope
for (it = edge[s].begin(), i = 0; it != edge[s].end(); it++, i++)
^
0_0_13803869_32620.cpp:51:12: error: 'edge' was not declared in this scope
for (it = edge[s].begin(), i = 0; it != edge[s].end(); it++, i++)
^
0_0_13803869_32620.cpp: In function 'void init()':
0_0_13803869_32620.cpp:64:3: error: 'edge' was not declared in this scope
edge[i].clear();
^
|