/ Vijos /

记录详情

Compile Error

/in/foo.cc: In function 'int getint()':
/in/foo.cc:12:5: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
     if(c=='-') q=1,c=getchar(); while (c>='0'&&c<='9') w=w*10+c-'0',c=getchar(); return q?-w:w;
     ^~
/in/foo.cc:12:33: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
     if(c=='-') q=1,c=getchar(); while (c>='0'&&c<='9') w=w*10+c-'0',c=getchar(); return q?-w:w;
                                 ^~~~~
/in/foo.cc: In function 'void link(int, int)':
/in/foo.cc:14:32: error: reference to 'next' is ambiguous
 inline void link(int x,int y){ next[++ecnt]=first[x]; first[x]=ecnt; to[ecnt]=y; }
                                ^~~~
/in/foo.cc:6:26: note: candidates are: int next [600011]
 int n,m,ecnt,first[MAXN],next[MAXM],to[MAXM],f[MAXN][20],deep[MAXN],ans[MAXN],val[MAXN],tong[MAXN],MAXD,w[MAXN],num[1000011];
                          ^~~~
In file included from /usr/include/c++/6/bits/stl_algobase.h:66:0,
                 from /usr/include/c++/6/bits/char_traits.h:39,
                 from /usr/include/c++/6/ios:40,
                 from /usr/include/c++/6/istream:38,
                 from /usr/include/c++/6/sstream:38,
                 from /usr/include/c++/6/complex:45,
                 from /usr/include/c++/6/ccomplex:39,
                 from /usr/include/x86_64-linux-gnu/c++/6/bits/stdc++.h:52,
                 from /in/foo.cc:1:
/usr/include/c++/6/bits/stl_iterator_base_funcs.h:205:5: note:                 template<class _ForwardIterator> _ForwardIterator std::next(_ForwardIterator, typename std::iterator_traits<_Iter>::difference_type)
     next(_ForwardIterator __x, typename
     ^~~~
/in/foo.cc: In function 'void init(int, int)':
/in/foo.cc:24:28: error: reference to 'next' is ambiguous
     for(int i=first[x];i;i=next[i]) {
                            ^~~~
/in/foo.cc:6:26: note: candidates are: int next [600011]
 int n,m,ecnt,first[MAXN],next[MAXM],to[MAXM],f[MAXN][20],deep[MAXN],ans[MAXN],val[MAXN],tong[MAXN],MAXD,w[MAXN],num[1000011];
                          ^~~~
In file included from /usr/include/c++/6/bits/stl_algobase.h:66:0,
                 from /usr/include/c++/6/bits/char_traits.h:39,
                 from /usr/include/c++/6/ios:40,
                 from /usr/include/c++/6/istream:38,
                 from /usr/include/c++/6/sstream:38,
                 from /usr/include/c++/6/complex:45,
                 from /usr/include/c++/6/ccomplex:39,
                 from /usr/include/x86_64-linux-gnu/c++/6/bits/stdc++.h:52,
                 from /in/foo.cc:1:
/usr/include/c++/6/bits/stl_iterator_base_funcs.h:205:5: note:                 template<class _ForwardIterator> _ForwardIterator std::next(_ForwardIterator, typename std::iterator_traits<_Iter>::difference_type)
     next(_ForwardIterator __x, typename
     ^~~~
/in/foo.cc: In function 'int lca(int, int)':
/in/foo.cc:32:5: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
     if(deep[x]<deep[y]) swap(x,y); int t=0; while((1<<t)<=deep[x]) t++; t--;
     ^~
/in/foo.cc:32:36: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
     if(deep[x]<deep[y]) swap(x,y); int t=0; while((1<<t)<=deep[x]) t++; t--;
                                    ^~~
/in/foo.cc:33:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
     for(int i=t;i>=0;i--) if(deep[x]-(1<<i)>=deep[y]) x=f[x][i]; if(x==y) return y;
     ^~~
/in/foo.cc:33:66: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
     for(int i=t;i>=0;i--) if(deep[x]-(1<<i)>=deep[y]) x=f[x][i]; if(x==y) return y;
                                                                  ^~
/in/foo.cc:34:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
     for(int i=t;i>=0;i--) if(f[x][i]!=f[y][i]) x=f[x][i],y=f[y][i]; return f[x][0];
     ^~~
/in/foo.cc:34:69: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
     for(int i=t;i>=0;i--) if(f[x][i]!=f[y][i]) x=f[x][i],y=f[y][i]; return f[x][0];
                                                                     ^~~~~~
/in/foo.cc: In function 'void dfs(int, int)':
/in/foo.cc:39:28: error: reference to 'next' is ambiguous
     for(int i=first[x];i;i=next[i]) {
                            ^~~~
/in/foo.cc:6:26: note: candidates are: int next [600011]
 int n,m,ecnt,first[MAXN],next[MAXM],to[MAXM],f[MAXN][20],deep[MAXN],ans[MAXN],val[MAXN],tong[MAXN],MAXD,w[MAXN],num[1000011];
                          ^~~~
In file included from /usr/include/c++/6/bits/stl_algobase.h:66:0,
                 from /usr/include/c++/6/bits/char_traits.h:39,
                 from /usr/include/c++/6/ios:40,
                 from /usr/include/c++/6/istream:38,
                 from /usr/include/c++/6/sstream:38,
                 from /usr/include/c++/6/complex:45,
                 from /usr/include/c++/6/ccomplex:39,
                 from /usr/include/x86_64-linux-gnu/c++/6/bits/stdc++.h:52,
                 from /in/foo.cc:1:
/usr/include/c++/6/bits/stl_iterator_base_funcs.h:205:5: note:                 template<class _ForwardIterator> _ForwardIterator std::next(_ForwardIterator, typename std::iterator_traits<_Iter>::difference_type)
     next(_ForwardIterator __x, typename
     ^~~~
/in/foo.cc: In function 'void DFS(int, int)':
/in/foo.cc:49:28: error: reference to 'next' is ambiguous
     for(int i=first[x];i;i=next[i]) {
                            ^~~~
/in/foo.cc:6:26: note: candidates are: int next [600011]
 int n,m,ecnt,first[MAXN],next[MAXM],to[MAXM],f[MAXN][20],deep[MAXN],ans[MAXN],val[MAXN],tong[MAXN],MAXD,w[MAXN],num[1000011];
                          ^~~~
In file included from /usr/include/c++/6/bits/stl_algobase.h:66:0,
                 from /usr/include/c++/6/bits/char_traits.h:39,
                 from /usr/include/c++/6/ios:40,
                 from /usr/include/c++/6/istream:38,
                 from /usr/include/c++/6/sstream:38,
                 from /usr/include/c++/6/complex:45,
                 from /usr/include/c++/6/ccomplex:39,
                 from /usr/include/x86_64-linux-gnu/c++/6/bits/stdc++.h:52,
                 from /in/foo.cc:1:
/usr/include/c++/6/bits/stl_iterator_base_funcs.h:205:5: note:                 template<class _ForwardIterator> _ForwardIterator std::next(_ForwardIterator, typename std::iterator_traits<_Iter>::difference_type)
     next(_ForwardIterator __x, typename
     ^~~~
/in/foo.cc: In function 'void work()':
/in/foo.cc:60:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
     for(int i=1;i<=n;i++) w[i]=getint(); ecnt=0;
     ^~~
/in/foo.cc:60:42: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
     for(int i=1;i<=n;i++) w[i]=getint(); ecnt=0;
                                          ^~~~

信息

递交者
类型
递交
题目
P2004 天天爱跑步
语言
C++
递交时间
2017-07-14 16:46:25
评测时间
2017-07-14 16:46:25
评测机
分数
0
总耗时
1012ms
峰值内存
126.629 MiB