0_0_37801640_26567.cpp: In function 'void Dijkstra(int)':
0_0_37801640_26567.cpp:40:13: error: expected unqualified-id before '[' token
auto[z, u]=q.top();
^
0_0_37801640_26567.cpp:42:17: error: 'u' was not declared in this scope
if (vis[u])continue;
^
0_0_37801640_26567.cpp:43:13: error: 'u' was not declared in this scope
vis[u] = true;
^
0_0_37801640_26567.cpp: In function 'void dfs(int, int)':
0_0_37801640_26567.cpp:58:11: error: expected unqualified-id before '[' token
for(auto [v,w]:a[u]) if(v!=fu){
^
0_0_37801640_26567.cpp:58:11: error: expected ';' before '[' token
0_0_37801640_26567.cpp:58:12: error: 'v' was not declared in this scope
for(auto [v,w]:a[u]) if(v!=fu){
^
0_0_37801640_26567.cpp:58:14: error: 'w' was not declared in this scope
for(auto [v,w]:a[u]) if(v!=fu){
^
0_0_37801640_26567.cpp: In lambda function:
0_0_37801640_26567.cpp:58:16: error: expected '{' before ':' token
for(auto [v,w]:a[u]) if(v!=fu){
^
0_0_37801640_26567.cpp: In function 'void dfs(int, int)':
0_0_37801640_26567.cpp:58:16: error: expected ';' before ':' token
0_0_37801640_26567.cpp:58:16: error: expected primary-expression before ':' token
0_0_37801640_26567.cpp:58:16: error: expected ')' before ':' token
0_0_37801640_26567.cpp:58:16: error: expected primary-expression before ':' token
|