0_0_38440965_4773.cpp: In function 'void solve()':
0_0_38440965_4773.cpp:36:14: error: expected unqualified-id before '[' token
auto [p, cur, _] = que.top();
^
0_0_38440965_4773.cpp:38:17: error: 'p' was not declared in this scope
if (vis[p][cur])
^
0_0_38440965_4773.cpp:38:20: error: 'cur' was not declared in this scope
if (vis[p][cur])
^
0_0_38440965_4773.cpp:40:13: error: 'p' was not declared in this scope
vis[p][cur] = 1;
^
0_0_38440965_4773.cpp:40:16: error: 'cur' was not declared in this scope
vis[p][cur] = 1;
^
0_0_38440965_4773.cpp:44:30: error: expected unqualified-id before '[' token
for (const auto &[i, _, _1] : adj[cur])
^
0_0_38440965_4773.cpp:44:30: error: expected ';' before '[' token
0_0_38440965_4773.cpp:44:31: error: 'i' was not declared in this scope
for (const auto &[i, _, _1] : adj[cur])
^
0_0_38440965_4773.cpp:44:34: error: '_' was not declared in this scope
for (const auto &[i, _, _1] : adj[cur])
^
0_0_38440965_4773.cpp:44:37: error: '_1' was not declared in this scope
for (const auto &[i, _, _1] : adj[cur])
^
0_0_38440965_4773.cpp:44:37: note: suggested alternative:
In file included from GCC4.9.2/x86_64-w64-mingw32/include/c++/x86_64-w64-mingw32/bits/stdc++.h:70:0,
from 0_0_38440965_4773.cpp:1:
GCC4.9.2/x86_64-w64-mingw32/include/c++/functional:972:34: note: 'std::placeholders::_1'
extern const _Placeholder<1> _1;
^
0_0_38440965_4773.cpp: In lambda function:
0_0_38440965_4773.cpp:44:41: error: expected '{' before ':' token
for (const auto &[i, _, _1] : adj[cur])
^
0_0_38440965_4773.cpp: In function 'void solve()':
0_0_38440965_4773.cpp:44:41: error: expected ';' before ':' token
0_0_38440965_4773.cpp:44:41: error: expected primary-expression before ':' token
0_0_38440965_4773.cpp:44:41: error: expected ')' before ':' token
0_0_38440965_4773.cpp:44:41: error: expected primary-expression before ':' token
0_0_38440965_4773.cpp:61:55: error: no matching function for call to 'std::priority_queue<node>::push(<brace-enclosed initializer list>)'
que.push({t[2], t[0], dis[t[2]][t[0]]});
^
0_0_38440965_4773.cpp:61:55: note: candidates are:
In file included from GCC4.9.2/x86_64-w64-mingw32/include/c++/queue:64:0,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/x86_64-w64-mingw32/bits/stdc++.h:85,
from 0_0_38440965_4773.cpp:1:
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_queue.h:499:7: note: void std::priority_queue<_Tp, _Sequence, _Compare>::push(const value_type&) [with _Tp = node; _Sequence = std::vector<node, std::allocator<node> >; _Compare = std::less<node>; std::priority_queue<_Tp, _Sequence, _Compare>::value_type = node]
push(const value_type& __x)
^
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_queue.h:499:7: note: no known conversion for argument 1 from '<brace-enclosed initializer list>' to 'const value_type& {aka const node&}'
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_queue.h:507:7: note: void std::priority_queue<_Tp, _Sequence, _Compare>::push(std::priority_queue<_Tp, _Sequence, _Compare>::value_type&&) [with _Tp = node; _Sequence = std::vector<node, std::allocator<node> >; _Compare = std::less<node>; std::priority_queue<_Tp, _Sequence, _Compare>::value_type = node]
push(value_type&& __x)
^
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_queue.h:507:7: note: no known conversion for argument 1 from '<brace-enclosed initializer list>' to 'std::priority_queue<node>::value_type&& {aka node&&}'
|