记录详情

Compile Error

/in/foo.cc:8:11: error: 'int time [10]' redeclared as different kind of symbol
 int time[N];
           ^
In file included from /usr/include/pthread.h:24:0,
                 from /usr/include/x86_64-linux-gnu/c++/7/bits/gthr-default.h:35,
                 from /usr/include/x86_64-linux-gnu/c++/7/bits/gthr.h:148,
                 from /usr/include/c++/7/ext/atomicity.h:35,
                 from /usr/include/c++/7/bits/ios_base.h:39,
                 from /usr/include/c++/7/ios:42,
                 from /usr/include/c++/7/ostream:38,
                 from /usr/include/c++/7/iostream:39,
                 from /in/foo.cc:1:
/usr/include/time.h:192:15: note: previous declaration 'time_t time(time_t*)'
 extern time_t time (time_t *__timer) __THROW;
               ^~~~
/in/foo.cc: In function 'void DFS(int, int)':
/in/foo.cc:14:23: warning: pointer to a function used in arithmetic [-Wpointer-arith]
  if (curtime >= time[v])
                       ^
/in/foo.cc:14:23: error: ISO C++ forbids comparison between pointer and integer [-fpermissive]
/in/foo.cc:16:32: warning: pointer to a function used in arithmetic [-Wpointer-arith]
  if (v == n && curtime < time[v])
                                ^
/in/foo.cc:16:32: error: ISO C++ forbids comparison between pointer and integer [-fpermissive]
/in/foo.cc: In function 'int main()':
/in/foo.cc:46:16: warning: pointer to a function used in arithmetic [-Wpointer-arith]
   cin >> time[i];
                ^
/in/foo.cc:46:7: error: no match for 'operator>>' (operand types are 'std::istream {aka std::basic_istream<char>}' and 'time_t(time_t*) throw () {aka long int(long int*) throw ()}')
   cin >> time[i];
   ~~~~^~~~~~~~~~
In file included from /usr/include/c++/7/iostream:40:0,
                 from /in/foo.cc:1:
/usr/include/c++/7/istream:120:7: note: candidate: std::basic_istream<_CharT, _Traits>::__istream_type& std::basic_istream<_CharT, _Traits>::operator>>(std::basic_istream<_CharT, _Traits>::__istream_type& (*)(std::basic_istream<_CharT, _Traits>::__istream_type&)) [with _CharT = char; _Traits = std::char_traits<char>; std::basic_istream<_CharT, _Traits>::__istream_type = std::basic_istream<char>] <near match>
       operator>>(__istream_type& (*__pf)(__istream_type&))
       ^~~~~~~~
/usr/include/c++/7/istream:120:7: note:   conversion of argument 1 would be ill-formed:
/in/foo.cc:46:16: error: invalid conversion from 'time_t (*)(time_t*) throw () {aka long int (*)(long int*) throw ()}' to 'std::basic_istream<char>::__istream_type& (*)(std::basic_istream<char>::__istream_type&) {aka std::basic_istream<char>& (*)(std::basic_istream<char>&)}' [-fpermissive]
   cin >> time[i];
          ~~~~~~^
In file included from /usr/include/c++/7/iostream:40:0,
                 from /in/foo.cc:1:
/usr/include/c++/7/istream:124:7: note: candidate: std::basic_istream<_CharT, _Traits>::__istream_type& std::basic_istream<_CharT, _Traits>::operator>>(std::basic_istream<_CharT, _Traits>::__ios_type& (*)(std::basic_istream<_CharT, _Traits>::__ios_type&)) [with _CharT = char; _Traits = std::char_traits<char>; std::basic_istream<_CharT, _Traits>::__istream_type = std::basic_istream<char>; std::basic_istream<_CharT, _Traits>::__ios_type = std::basic_ios<char>] <near match>
       operator>>(__ios_type& (*__pf)(__ios_type&))
       ^~~~~~~~
/usr/include/c++/7/istream:124:7: note:   conversion of argument 1 would be ill-formed:
/in/foo.cc:46:16: error: invalid conversion from 'time_t (*)(time_t*) throw () {aka long int (*)(long int*) throw ()}' to 'std::basic_istream<char>::__ios_type& (*)(std::basic_istream<char>::__ios_type&) {aka std::basic_ios<char>& (*)(std::basic_ios<char>&)}' [-fpermissive]
   cin >> time[i];
          ~~~~~~^
In file included from /usr/include/c++/7/iostream:40:0,
                 from /in/foo.cc:1:
/usr/include/c++/7/istream:131:7: note: candidate: std::basic_istream<_CharT, _Traits>::__istream_type& std::basic_istream<_CharT, _Traits>::operator>>(std::ios_base& (*)(std::ios_base&)) [with _CharT = char; _Traits = std::char_traits<char>; std::basic_istream<_CharT, _Traits>::__istream_type = std::basic_istream<char>] <near match>
       operator>>(ios_base& (*__pf)(ios_base&))
       ^~~~~~~~
/usr/include/c++/7/istream:131:7: note:   conversion of argument 1 would be ill-formed:
/in/foo.cc:46:16: error: invalid conversion from 'time_t (*)(time_t*) throw () {aka long int (*)(long int*) throw ()}' to 'std::ios_base& (*)(std::ios_base&)' [-fpermissive]
   cin >> time[i];
          ~~~~~~^
In file included from /usr/include/c++/7/iostream:40:0,
                 from /in/foo.cc:1:
/usr/include/c++/7/istream:168:7: note: candidate: std::basic_istream<_CharT, _Traits>::__istream_type& std::basic_istream<_CharT, _Traits>::operator>>(bool&) [with _CharT = char; _Traits = std::char_traits<char>; std::basic_istream<_CharT, _Traits>::__istream_type = std::basic_istream<char>] <near match>
       operator>>(bool& __n)
       ^~~~~~~~
/usr/include/c++/7/istream:168:7: note:   conversion of argument 1 would be ill-formed:
/in/foo.cc:46:16: error: cannot bind non-const lvalue reference of type 'bool&' to an rvalue of type 'bool'
   cin >> time[i];
          ~~~~~~^
In file included from /usr/include/c++/7/iostream:40:0,
                 from /in/foo.cc:1:
/usr/include/c++/7/istream:172:7: note: candidate: std::basic_istream<_CharT, _Traits>& std::basic_istream<_CharT, _Traits>::operator>>(short int&) [with _CharT = char; _Traits = std::char_traits<char>] <near match>
       operator>>(short& __n);
       ^~~~~~~~
/usr/include/c++/7/istream:172:7: note:   conversion of argument 1 would be ill-formed:
/in/foo.cc:46:16: error: invalid conversion from 'time_t (*)(time_t*) throw () {aka long int (*)(long int*) throw ()}' to 'short int' [-fpermissive]
   cin >> time[i];
          ~~~~~~^
/in/foo.cc:46:16: error: cannot bind rvalue '(short int)(time + ((sizetype)i))' to 'short int&'
In file included from /usr/include/c++/7/iostream:40:0,
                 from /in/foo.cc:1:
/usr/include/c++/7/istream:175:7: note: candidate: std::basic_istream<_CharT, _Traits>::__istream_type& std::basic_istream<_CharT, _Traits>::operator>>(short unsigned int&) [with _CharT = char; _Traits = std::char_traits<char>; std::basic_istream<_CharT, _Traits>::__istream_type = std::basic_istream<char>] <near match>
       operator>>(unsigned short& __n)
       ^~~~~~~~
/usr/include/c++/7/istream:175:7: note:   conversion of argument 1 would be ill-formed:
/in/foo.cc:46:16: error: invalid conversion from 'time_t (*)(time_t*) throw () {aka long int (*)(long int*) throw ()}' to 'short unsigned int' [-fpermissive]
   cin >> time[i];
          ~~~~~~^
/in/foo.cc:46:16: error: cannot bind rvalue '(short unsigned int)(time + ((sizetype)i))' to 'short unsigned int&'
In file included from /usr/include/c++/7/iostream:40:0,
                 from /in/foo.cc:1:
/usr/include/c++/7/istream:179:7: note: candidate: std::basic_istream<_CharT, _Traits>& std::basic_istream<_CharT, _Traits>::operator>>(int&) [with _CharT = char; _Traits = std::char_traits<char>] <near match>
       operator>>(int& __n);
       ^~~~~~~~
/usr/include/c++/7/istream:179:7: note:   conversion of argument 1 would be ill-formed:
/in/foo.cc:46:16: error: invalid conversion from 'time_t (*)(time_t*) throw () {aka long int (*)(long int*) throw ()}' to 'int' [-fpermissive]
   cin >> time[i];
          ~~~~~~^
/in/foo.cc:46:16: error: cannot bind rvalue '(int)(time + ((sizetype)i))' to 'int&'
In file included from /usr/include/c++/7/iostream:40:0,
                 from /in/foo.cc:1:
/usr/include/c++/7/istream:182:7: note: candidate: std::basic_istream<_CharT, _Traits>::__istream_type& std::basic_istream<_CharT, _Traits>::operator>>(unsigned int&) [with _CharT = char; _Traits = std::char_traits<char>; std::basic_istream<_CharT, _Traits>::__istream_type = std::basic_istream<char>] <near match>
       operator>>(unsigned int& __n)
       ^~~~~~~~
/usr/include/c++/7/istream:182:7: note:   conversion of argument 1 would be ill-formed:
/in/foo.cc:46:16: error: invalid conversion from 'time_t (*)(time_t*) throw () {aka long int (*)(long int*) throw ()}' to 'unsigned int' [-fpermissive]
   cin >> 

信息

递交者
类型
递交
题目
偷拍硕哥1
比赛
小兰赛 2018/12/9
语言
C++
递交时间
2018-12-09 11:19:07
评测时间
2018-12-09 11:19:15
评测机
分数
0
总耗时
263ms
峰值内存
29.691 MiB