0_0_33467217_12174.cpp: In instantiation of 'void weighted_undirected_graph<data_type>::addedge(int, int, data_type) [with data_type = int]':
0_0_33467217_12174.cpp:478:29: required from here
0_0_33467217_12174.cpp:401:3: error: converting to 'std::vector<std::tuple<int, int, int>, std::allocator<std::tuple<int, int, int> > >::value_type {aka std::tuple<int, int, int>}' from initializer list would use explicit constructor 'constexpr std::tuple< <template-parameter-1-1> >::tuple(_UElements&& ...) [with _UElements = {int&, int&, int&}; <template-parameter-2-2> = void; _Elements = {int, int, int}]'
edge.push_back({ x, y, z });
^
0_0_33467217_12174.cpp: In instantiation of 'data_type weighted_undirected_graph<data_type>::min_cut() [with data_type = int]':
0_0_33467217_12174.cpp:480:24: required from here
0_0_33467217_12174.cpp:430:4: error: converting to 'std::priority_queue<std::tuple<int, int, int>, std::vector<std::tuple<int, int, int>, std::allocator<std::tuple<int, int, int> > >, std::less<std::tuple<int, int, int> > >::value_type {aka std::tuple<int, int, int>}' from initializer list would use explicit constructor 'constexpr std::tuple< <template-parameter-1-1> >::tuple(_UElements&& ...) [with _UElements = {int, int, int&}; <template-parameter-2-2> = void; _Elements = {int, int, int}]'
q.push({ 0, 0, start });
^
0_0_33467217_12174.cpp:447:7: error: converting to 'std::priority_queue<std::tuple<int, int, int>, std::vector<std::tuple<int, int, int>, std::allocator<std::tuple<int, int, int> > >, std::less<std::tuple<int, int, int> > >::value_type {aka std::tuple<int, int, int>}' from initializer list would use explicit constructor 'constexpr std::tuple< <template-parameter-1-1> >::tuple(_UElements&& ...) [with _UElements = {int&, int&, int}; <template-parameter-2-2> = void; _Elements = {int, int, int}]'
q.push({ weight, y, assign.get(nxt) });
^
|