0_0_18775573_14743.cpp: In function 'int minDistance(int, int, std::vector<std::vector<edge> >, int)':
0_0_18775573_14743.cpp:24:13: error: invalid operands of types 'int' and '<unresolved overloaded function type>' to binary 'operator=='
if(add == end) return dist[end];
^
0_0_18775573_14743.cpp:24:29: error: no match for 'operator[]' (operand types are 'std::vector<int>' and '<unresolved overloaded function type>')
if(add == end) return dist[end];
^
0_0_18775573_14743.cpp:24:29: note: candidates are:
In file included from GCC4.9.2/x86_64-w64-mingw32/include/c++/vector:64:0,
from 0_0_18775573_14743.cpp:2:
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_vector.h:779:7: note: std::vector<_Tp, _Alloc>::reference std::vector<_Tp, _Alloc>::operator[](std::vector<_Tp, _Alloc>::size_type) [with _Tp = int; _Alloc = std::allocator<int>; std::vector<_Tp, _Alloc>::reference = int&; std::vector<_Tp, _Alloc>::size_type = long long unsigned int]
operator[](size_type __n) _GLIBCXX_NOEXCEPT
^
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_vector.h:779:7: note: no known conversion for argument 1 from '<unresolved overloaded function type>' to 'std::vector<int>::size_type {aka long long unsigned int}'
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_vector.h:794:7: note: std::vector<_Tp, _Alloc>::const_reference std::vector<_Tp, _Alloc>::operator[](std::vector<_Tp, _Alloc>::size_type) const [with _Tp = int; _Alloc = std::allocator<int>; std::vector<_Tp, _Alloc>::const_reference = const int&; std::vector<_Tp, _Alloc>::size_type = long long unsigned int]
operator[](size_type __n) const _GLIBCXX_NOEXCEPT
^
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_vector.h:794:7: note: no known conversion for argument 1 from '<unresolved overloaded function type>' to 'std::vector<int>::size_type {aka long long unsigned int}'
0_0_18775573_14743.cpp:35:13: error: no match for 'operator[]' (operand types are 'std::vector<int>' and '<unresolved overloaded function type>')
return dist[end];
^
0_0_18775573_14743.cpp:35:13: note: candidates are:
In file included from GCC4.9.2/x86_64-w64-mingw32/include/c++/vector:64:0,
from 0_0_18775573_14743.cpp:2:
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_vector.h:779:7: note: std::vector<_Tp, _Alloc>::reference std::vector<_Tp, _Alloc>::operator[](std::vector<_Tp, _Alloc>::size_type) [with _Tp = int; _Alloc = std::allocator<int>; std::vector<_Tp, _Alloc>::reference = int&; std::vector<_Tp, _Alloc>::size_type = long long unsigned int]
operator[](size_type __n) _GLIBCXX_NOEXCEPT
^
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_vector.h:779:7: note: no known conversion for argument 1 from '<unresolved overloaded function type>' to 'std::vector<int>::size_type {aka long long unsigned int}'
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_vector.h:794:7: note: std::vector<_Tp, _Alloc>::const_reference std::vector<_Tp, _Alloc>::operator[](std::vector<_Tp, _Alloc>::size_type) const [with _Tp = int; _Alloc = std::allocator<int>; std::vector<_Tp, _Alloc>::const_reference = const int&; std::vector<_Tp, _Alloc>::size_type = long long unsigned int]
operator[](size_type __n) const _GLIBCXX_NOEXCEPT
^
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_vector.h:794:7: note: no known conversion for argument 1 from '<unresolved overloaded function type>' to 'std::vector<int>::size_type {aka long long unsigned int}'
|