/ Vijos /

记录详情

Compile Error

/in/foo.cc: In function 'int main()':
/in/foo.cc:17:34: error: no matching function for call to 'min(long long int&, int&)'
         Map[x][y]=min(Map[x][y],z);
                                  ^
In file included from /usr/include/c++/6/bits/char_traits.h:39:0,
                 from /usr/include/c++/6/ios:40,
                 from /usr/include/c++/6/ostream:38,
                 from /usr/include/c++/6/iostream:39,
                 from /in/foo.cc:3:
/usr/include/c++/6/bits/stl_algobase.h:195:5: note: candidate: template<class _Tp> const _Tp& std::min(const _Tp&, const _Tp&)
     min(const _Tp& __a, const _Tp& __b)
     ^~~
/usr/include/c++/6/bits/stl_algobase.h:195:5: note:   template argument deduction/substitution failed:
/in/foo.cc:17:34: note:   deduced conflicting types for parameter 'const _Tp' ('long long int' and 'int')
         Map[x][y]=min(Map[x][y],z);
                                  ^
In file included from /usr/include/c++/6/bits/char_traits.h:39:0,
                 from /usr/include/c++/6/ios:40,
                 from /usr/include/c++/6/ostream:38,
                 from /usr/include/c++/6/iostream:39,
                 from /in/foo.cc:3:
/usr/include/c++/6/bits/stl_algobase.h:243:5: note: candidate: template<class _Tp, class _Compare> const _Tp& std::min(const _Tp&, const _Tp&, _Compare)
     min(const _Tp& __a, const _Tp& __b, _Compare __comp)
     ^~~
/usr/include/c++/6/bits/stl_algobase.h:243:5: note:   template argument deduction/substitution failed:
/in/foo.cc:17:34: note:   deduced conflicting types for parameter 'const _Tp' ('long long int' and 'int')
         Map[x][y]=min(Map[x][y],z);
                                  ^
In file included from /usr/include/c++/6/algorithm:62:0,
                 from /in/foo.cc:4:
/usr/include/c++/6/bits/stl_algo.h:3447:5: note: candidate: template<class _Tp> _Tp std::min(std::initializer_list<_Tp>)
     min(initializer_list<_Tp> __l)
     ^~~
/usr/include/c++/6/bits/stl_algo.h:3447:5: note:   template argument deduction/substitution failed:
/in/foo.cc:17:34: note:   mismatched types 'std::initializer_list<_Tp>' and 'long long int'
         Map[x][y]=min(Map[x][y],z);
                                  ^
In file included from /usr/include/c++/6/algorithm:62:0,
                 from /in/foo.cc:4:
/usr/include/c++/6/bits/stl_algo.h:3453:5: note: candidate: template<class _Tp, class _Compare> _Tp std::min(std::initializer_list<_Tp>, _Compare)
     min(initializer_list<_Tp> __l, _Compare __comp)
     ^~~
/usr/include/c++/6/bits/stl_algo.h:3453:5: note:   template argument deduction/substitution failed:
/in/foo.cc:17:34: note:   mismatched types 'std::initializer_list<_Tp>' and 'long long int'
         Map[x][y]=min(Map[x][y],z);
                                  ^

信息

递交者
类型
递交
题目
P1591 社交网络
语言
C++
递交时间
2018-08-30 09:38:20
评测时间
2018-08-30 09:38:20
评测机
分数
0
总耗时
0ms
峰值内存
0 Bytes