0_0_19222767_9432.cpp: In function 'void build(int)':
0_0_19222767_9432.cpp:16:42: error: reference to 'count' is ambiguous
int i; for(i=1;i<=n;i++) {pre[i]=i;count[i]=0;}}int find(int k){ if(pre[k]==k) return k; pre[k]=find(pre[k]); return pre[k];}
^
0_0_19222767_9432.cpp:14:12: note: candidates are: int count [1005]
int pre[N],count[N];
^
In file included from GCC4.9.2/x86_64-w64-mingw32/include/c++/algorithm:62:0,
from 0_0_19222767_9432.cpp:5:
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_algo.h:3947:5: note: template<class _IIter, class _Tp> typename std::iterator_traits<_Iterator>::difference_type std::count(_IIter, _IIter, const _Tp&)
count(_InputIterator __first, _InputIterator __last, const _Tp& __value)
^
0_0_19222767_9432.cpp: In function 'void get_map(int)':
0_0_19222767_9432.cpp:18:122: error: reference to 'count' is ambiguous
int a,b,f1,f2; while(m--) { scanf("%d%d",&a,&b); f1=find(a); f2=find(b); if(f1==f2) count[f1]++; else { pre[f2]=f1; count[f1]+=count[f2]+1; } }}int Judge(int n){
^
0_0_19222767_9432.cpp:14:12: note: candidates are: int count [1005]
int pre[N],count[N];
^
In file included from GCC4.9.2/x86_64-w64-mingw32/include/c++/algorithm:62:0,
from 0_0_19222767_9432.cpp:5:
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_algo.h:3947:5: note: template<class _IIter, class _Tp> typename std::iterator_traits<_Iterator>::difference_type std::count(_IIter, _IIter, const _Tp&)
count(_InputIterator __first, _InputIterator __last, const _Tp& __value)
^
0_0_19222767_9432.cpp:18:190: error: reference to 'count' is ambiguous
int a,b,f1,f2; while(m--) { scanf("%d%d",&a,&b); f1=find(a); f2=find(b); if(f1==f2) count[f1]++; else { pre[f2]=f1; count[f1]+=count[f2]+1; } }}int Judge(int n){
^
0_0_19222767_9432.cpp:14:12: note: candidates are: int count [1005]
int pre[N],count[N];
^
In file included from GCC4.9.2/x86_64-w64-mingw32/include/c++/algorithm:62:0,
from 0_0_19222767_9432.cpp:5:
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_algo.h:3947:5: note: template<class _IIter, class _Tp> typename std::iterator_traits<_Iterator>::difference_type std::count(_IIter, _IIter, const _Tp&)
count(_InputIterator __first, _InputIterator __last, const _Tp& __value)
^
0_0_19222767_9432.cpp:18:201: error: reference to 'count' is ambiguous
int a,b,f1,f2; while(m--) { scanf("%d%d",&a,&b); f1=find(a); f2=find(b); if(f1==f2) count[f1]++; else { pre[f2]=f1; count[f1]+=count[f2]+1; } }}int Judge(int n){
^
0_0_19222767_9432.cpp:14:12: note: candidates are: int count [1005]
int pre[N],count[N];
^
In file included from GCC4.9.2/x86_64-w64-mingw32/include/c++/algorithm:62:0,
from 0_0_19222767_9432.cpp:5:
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_algo.h:3947:5: note: template<class _IIter, class _Tp> typename std::iterator_traits<_Iterator>::difference_type std::count(_IIter, _IIter, const _Tp&)
count(_InputIterator __first, _InputIterator __last, const _Tp& __value)
^
0_0_19222767_9432.cpp: In function 'int Judge(int)':
0_0_19222767_9432.cpp:19:87: error: reference to 'count' is ambiguous
int flag=0; for(int i=1;i<=n;i++) { if(pre[i]!=i) continue; if(count[i]%2) {flag=1;break;} } return flag;}
^
0_0_19222767_9432.cpp:14:12: note: candidates are: int count [1005]
int pre[N],count[N];
^
In file included from GCC4.9.2/x86_64-w64-mingw32/include/c++/algorithm:62:0,
from 0_0_19222767_9432.cpp:5:
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_algo.h:3947:5: note: template<class _IIter, class _Tp> typename std::iterator_traits<_Iterator>::difference_type std::count(_IIter, _IIter, const _Tp&)
count(_InputIterator __first, _InputIterator __last, const _Tp& __value)
^
|