QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#810619 | #9870. Items | ucup-team1721 | Compile Error | / | / | C++23 | 13.1kb | 2024-12-12 02:01:14 | 2024-12-12 02:01:21 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
详细
answer.code: In instantiation of ‘solve()::<lambda(int)>::<lambda(auto:65&&, int, int)> [with auto:65 = solve()::<lambda(int)>::<lambda(auto:65&&, int, int)>&]’: answer.code:387:21: required from here answer.code:384:20: error: inconsistent types ‘std::vector<long int>’ and ‘std::vector<long long int>’ deduced for lambda return type 384 | return rlt; | ^~~ answer.code:384:20: error: no matching function for call to ‘std::vector<long int>::vector(std::vector<long long int>)’ In file included from /usr/include/c++/13/vector:66, from /usr/include/c++/13/functional:64, from /usr/include/x86_64-linux-gnu/c++/13/bits/stdc++.h:53, from answer.code:1: /usr/include/c++/13/bits/stl_vector.h:704:9: note: candidate: ‘template<class _InputIterator, class> constexpr std::vector<_Tp, _Alloc>::vector(_InputIterator, _InputIterator, const allocator_type&) [with <template-parameter-2-2> = _InputIterator; _Tp = long int; _Alloc = std::allocator<long int>]’ 704 | vector(_InputIterator __first, _InputIterator __last, | ^~~~~~ /usr/include/c++/13/bits/stl_vector.h:704:9: note: template argument deduction/substitution failed: answer.code:384:20: note: candidate expects 3 arguments, 1 provided 384 | return rlt; | ^~~ /usr/include/c++/13/bits/stl_vector.h:675:7: note: candidate: ‘constexpr std::vector<_Tp, _Alloc>::vector(std::initializer_list<_Tp>, const allocator_type&) [with _Tp = long int; _Alloc = std::allocator<long int>; allocator_type = std::allocator<long int>]’ 675 | vector(initializer_list<value_type> __l, | ^~~~~~ /usr/include/c++/13/bits/stl_vector.h:675:43: note: no known conversion for argument 1 from ‘std::vector<long long int>’ to ‘std::initializer_list<long int>’ 675 | vector(initializer_list<value_type> __l, | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~ /usr/include/c++/13/bits/stl_vector.h:656:7: note: candidate: ‘constexpr std::vector<_Tp, _Alloc>::vector(std::vector<_Tp, _Alloc>&&, std::__type_identity_t<_Alloc>&) [with _Tp = long int; _Alloc = std::allocator<long int>; std::__type_identity_t<_Alloc> = std::allocator<long int>]’ 656 | vector(vector&& __rv, const __type_identity_t<allocator_type>& __m) | ^~~~~~ /usr/include/c++/13/bits/stl_vector.h:656:7: note: candidate expects 2 arguments, 1 provided /usr/include/c++/13/bits/stl_vector.h:637:7: note: candidate: ‘constexpr std::vector<_Tp, _Alloc>::vector(std::vector<_Tp, _Alloc>&&, const allocator_type&, std::false_type) [with _Tp = long int; _Alloc = std::allocator<long int>; allocator_type = std::allocator<long int>; std::false_type = std::integral_constant<bool, false>]’ 637 | vector(vector&& __rv, const allocator_type& __m, false_type) | ^~~~~~ /usr/include/c++/13/bits/stl_vector.h:637:7: note: candidate expects 3 arguments, 1 provided /usr/include/c++/13/bits/stl_vector.h:632:7: note: candidate: ‘constexpr std::vector<_Tp, _Alloc>::vector(std::vector<_Tp, _Alloc>&&, const allocator_type&, std::true_type) [with _Tp = long int; _Alloc = std::allocator<long int>; allocator_type = std::allocator<long int>; std::true_type = std::integral_constant<bool, true>]’ 632 | vector(vector&& __rv, const allocator_type& __m, true_type) noexcept | ^~~~~~ /usr/include/c++/13/bits/stl_vector.h:632:7: note: candidate expects 3 arguments, 1 provided /usr/include/c++/13/bits/stl_vector.h:621:7: note: candidate: ‘constexpr std::vector<_Tp, _Alloc>::vector(const std::vector<_Tp, _Alloc>&, std::__type_identity_t<_Alloc>&) [with _Tp = long int; _Alloc = std::allocator<long int>; std::__type_identity_t<_Alloc> = std::allocator<long int>]’ 621 | vector(const vector& __x, const __type_identity_t<allocator_type>& __a) | ^~~~~~ /usr/include/c++/13/bits/stl_vector.h:621:7: note: candidate expects 2 arguments, 1 provided /usr/include/c++/13/bits/stl_vector.h:617:7: note: candidate: ‘constexpr std::vector<_Tp, _Alloc>::vector(std::vector<_Tp, _Alloc>&&) [with _Tp = long int; _Alloc = std::allocator<long int>]’ 617 | vector(vector&&) noexcept = default; | ^~~~~~ /usr/include/c++/13/bits/stl_vector.h:617:14: note: no known conversion for argument 1 from ‘std::vector<long long int>’ to ‘std::vector<long int>&&’ 617 | vector(vector&&) noexcept = default; | ^~~~~~~~ /usr/include/c++/13/bits/stl_vector.h:598:7: note: candidate: ‘constexpr std::vector<_Tp, _Alloc>::vector(const std::vector<_Tp, _Alloc>&) [with _Tp = long int; _Alloc = std::allocator<long int>]’ 598 | vector(const vector& __x) | ^~~~~~ /usr/include/c++/13/bits/stl_vector.h:598:28: note: no known conversion for argument 1 from ‘std::vector<long long int>’ to ‘const std::vector<long int>&’ 598 | vector(const vector& __x) | ~~~~~~~~~~~~~~^~~ /usr/include/c...