记录详情

Compile Error

foo.cc: In function 'bool check(int)':
foo.cc:18:31: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
   if ((s >> i & 1) && (s >> i + 1 & 1))
                             ~~^~~
foo.cc: In function 'int count(int)':
foo.cc:27:16: error: no match for 'operator>>' (operand types are 'std::vector<int>' and 'int')
   res += state >> i & 1;
          ~~~~~~^~~~
In file included from /usr/include/c++/7/string:53:0,
                 from /usr/include/c++/7/bits/locale_classes.h:40,
                 from /usr/include/c++/7/bits/ios_base.h:41,
                 from /usr/include/c++/7/ios:42,
                 from /usr/include/c++/7/ostream:38,
                 from /usr/include/c++/7/iostream:39,
                 from foo.cc:1:
/usr/include/c++/7/bits/basic_string.tcc:1465:5: note: candidate: template<class _CharT, class _Traits, class _Alloc> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::__cxx11::basic_string<_CharT, _Traits, _Alloc>&)
     operator>>(basic_istream<_CharT, _Traits>& __in,
     ^~~~~~~~
/usr/include/c++/7/bits/basic_string.tcc:1465:5: note:   template argument deduction/substitution failed:
foo.cc:27:19: note:   'std::vector<int>' is not derived from 'std::basic_istream<_CharT, _Traits>'
   res += state >> i & 1;
                   ^
In file included from /usr/include/c++/7/istream:991:0,
                 from /usr/include/c++/7/iostream:40,
                 from foo.cc:1:
/usr/include/c++/7/bits/istream.tcc:963:5: note: candidate: template<class _CharT2, class _Traits2> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, _CharT2*)
     operator>>(basic_istream<_CharT, _Traits>& __in, _CharT* __s)
     ^~~~~~~~
/usr/include/c++/7/bits/istream.tcc:963:5: note:   template argument deduction/substitution failed:
foo.cc:27:19: note:   'std::vector<int>' is not derived from 'std::basic_istream<_CharT, _Traits>'
   res += state >> i & 1;
                   ^
In file included from /usr/include/c++/7/istream:991:0,
                 from /usr/include/c++/7/iostream:40,
                 from foo.cc:1:
/usr/include/c++/7/bits/istream.tcc:931:5: note: candidate: template<class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, _CharT&)
     operator>>(basic_istream<_CharT, _Traits>& __in, _CharT& __c)
     ^~~~~~~~
/usr/include/c++/7/bits/istream.tcc:931:5: note:   template argument deduction/substitution failed:
foo.cc:27:19: note:   'std::vector<int>' is not derived from 'std::basic_istream<_CharT, _Traits>'
   res += state >> i & 1;
                   ^
In file included from /usr/include/c++/7/iostream:40:0,
                 from foo.cc:1:
/usr/include/c++/7/istream:756:5: note: candidate: template<class _Traits> std::basic_istream<char, _Traits>& std::operator>>(std::basic_istream<char, _Traits>&, unsigned char&)
     operator>>(basic_istream<char, _Traits>& __in, unsigned char& __c)
     ^~~~~~~~
/usr/include/c++/7/istream:756:5: note:   template argument deduction/substitution failed:
foo.cc:27:19: note:   'std::vector<int>' is not derived from 'std::basic_istream<char, _Traits>'
   res += state >> i & 1;
                   ^
In file included from /usr/include/c++/7/iostream:40:0,
                 from foo.cc:1:
/usr/include/c++/7/istream:761:5: note: candidate: template<class _Traits> std::basic_istream<char, _Traits>& std::operator>>(std::basic_istream<char, _Traits>&, signed char&)
     operator>>(basic_istream<char, _Traits>& __in, signed char& __c)
     ^~~~~~~~
/usr/include/c++/7/istream:761:5: note:   template argument deduction/substitution failed:
foo.cc:27:19: note:   'std::vector<int>' is not derived from 'std::basic_istream<char, _Traits>'
   res += state >> i & 1;
                   ^
In file included from /usr/include/c++/7/iostream:40:0,
                 from foo.cc:1:
/usr/include/c++/7/istream:803:5: note: candidate: template<class _Traits> std::basic_istream<char, _Traits>& std::operator>>(std::basic_istream<char, _Traits>&, unsigned char*)
     operator>>(basic_istream<char, _Traits>& __in, unsigned char* __s)
     ^~~~~~~~
/usr/include/c++/7/istream:803:5: note:   template argument deduction/substitution failed:
foo.cc:27:19: note:   'std::vector<int>' is not derived from 'std::basic_istream<char, _Traits>'
   res += state >> i & 1;
                   ^
In file included from /usr/include/c++/7/iostream:40:0,
                 from foo.cc:1:
/usr/include/c++/7/istream:808:5: note: candidate: template<class _Traits> std::basic_istream<char, _Traits>& std::operator>>(std::basic_istream<char, _Traits>&, signed char*)
     operator>>(basic_istream<char, _Traits>& __in, signed char* __s)
     ^~~~~~~~
/usr/include/c++/7/istream:808:5: note:   template argument deduction/substitution failed:
foo.cc:27:19: note:   'std::vector<int>' is not derived from 'std::basic_istream<char, _Traits>'
   res += state >> i & 1;
                   ^
In file included from /usr/include/c++/7/iostream:40:0,
                 from foo.cc:1:
/usr/include/c++/7/istream:980:5: note: candidate: template<class _Istream, class _Tp> typename std::enable_if<std::__and_<std::__not_<std::is_lvalue_reference<_Tp> >, std::__is_convertible_to_basic_istream<_Istream>, std::__is_extractable<typename std::__is_convertible_to_basic_istream<_Tp>::__istream_type, _Tp&&, void> >::value, typename std::__is_convertible_to_basic_istream<_Tp>::__istream_type>::type std::operator>>(_Istream&&, _Tp&&)
     operator>>(_Istream&& __is, _Tp&& __x)
     ^~~~~~~~
/usr/include/c++/7/istream:980:5: note:   template argument deduction/substitution failed:
/usr/include/c++/7/istream: In substitution of 'template<class _Istream, class _Tp> typename std::enable_if<std::__and_<std::__not_<std::is_lvalue_reference<_Tp> >, std::__is_convertible_to_basic_istream<_Istream>, std::__is_extractable<typename std::__is_convertible_to_basic_istream<_Tp>::__istream_type, _Tp&&, void> >::value, typename std::__is_convertible_to_basic_istream<_Tp>::__istream_type>::type std::operator>>(_Istream&&, _Tp&&) [with _Istream = std::vector<int>&; _Tp = int&]':
foo.cc:27:19:   required from here
/usr/include/c++/7/istream:980:5: error: no type named 'type' in 'struct std::enable_if<false, void>'
foo.cc: In function 'int main()':
foo.cc:43:20: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  for (int i = 0; i < state.size(); ++ i)
                  ~~^~~~~~~~~~~~~~
foo.cc:44:21: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   for (int j = 0; j < state.size(); ++ j)
                   ~~^~~~~~~~~~~~~~
foo.cc:54:22: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
    for (int a = 0; a < state.size(); ++ a)
                    ~~^~~~~~~~~~~~~~
[Hydro](https://hydro.ac)提供评测服务

信息

递交者
类型
自测
题目
P1003 放置国王
语言
C++
递交时间
2021-08-13 09:29:35
评测时间
2021-08-13 09:29:35
评测机
分数
0
总耗时
0ms
峰值内存
0 Bytes