0_0_38513034_1332.cpp: In lambda function:
0_0_38513034_1332.cpp:33:18: error: expected unqualified-id before '[' token
auto [u, w, t] = PQ.top();
^
0_0_38513034_1332.cpp:36:17: error: 't' was not declared in this scope
if (t == 0) {
^
0_0_38513034_1332.cpp:37:25: error: 'u' was not declared in this scope
T.erase(u);
^
0_0_38513034_1332.cpp:39:35: error: 'u' was not declared in this scope
for (auto V : adj[u]) {
^
0_0_38513034_1332.cpp:46:41: error: 'u' was not declared in this scope
dis[v][0] = dis[u][t];
^
0_0_38513034_1332.cpp:55:17: error: 't' was not declared in this scope
if (t > 0) {
^
0_0_38513034_1332.cpp:58:21: error: 'u' was not declared in this scope
if (vis[u][t]) {
^
0_0_38513034_1332.cpp:58:24: error: 't' was not declared in this scope
if (vis[u][t]) {
^
0_0_38513034_1332.cpp:61:17: error: 'u' was not declared in this scope
vis[u][t] = true;
^
0_0_38513034_1332.cpp:61:20: error: 't' was not declared in this scope
vis[u][t] = true;
^
0_0_38513034_1332.cpp:62:23: error: expected unqualified-id before '[' token
for (auto [v, vw, vt] : adj[u]) {
^
0_0_38513034_1332.cpp:62:23: error: expected ';' before '[' token
0_0_38513034_1332.cpp:62:24: error: 'v' was not declared in this scope
for (auto [v, vw, vt] : adj[u]) {
^
0_0_38513034_1332.cpp:62:27: error: 'vw' was not declared in this scope
for (auto [v, vw, vt] : adj[u]) {
^
0_0_38513034_1332.cpp:62:31: error: 'vt' was not declared in this scope
for (auto [v, vw, vt] : adj[u]) {
^
0_0_38513034_1332.cpp: In lambda function:
0_0_38513034_1332.cpp:62:35: error: expected '{' before ':' token
for (auto [v, vw, vt] : adj[u]) {
^
0_0_38513034_1332.cpp: In lambda function:
0_0_38513034_1332.cpp:62:35: error: expected ';' before ':' token
0_0_38513034_1332.cpp:62:35: error: expected primary-expression before ':' token
0_0_38513034_1332.cpp:62:35: error: expected ')' before ':' token
0_0_38513034_1332.cpp:62:35: error: expected primary-expression before ':' token
|