C++问题:杭电acm(HDU) 1878,为啥我的代码总是compilation error

交上去是ce,提示是`count'undeclared(firstusethisfunction)我把所有的count改成cnt2,再交就没问题了为什么呢?count这个... 交上去是ce,提示是`count' undeclared (first use this function)
我把所有的 count 改成 cnt2,再交就没问题了
为什么呢?count这个变量名有什么问题吗?
PS:我提交时选的是G++标准,先C++标准没错误,但复试时用G++标准,所以得弄明白
我的代码:
#include<iostream>
using namespace std;
int father[1000],count[1000];
int Find(int a)
{
int b = a;
while(father[b]!=b)
b = father[b];
int k = a;
while(father[k]!=b)
{
father[k] = b;
k = father[a];
a = father[a];
}
return b;
}
void merge(int a,int b)
{
father[a] = b;
}
int main()
{
int n,m,cnt;
bool tragedy;
while(scanf("%d",&n),n)
{
tragedy = false;
cnt = 0;
scanf("%d",&m);;
int i;
int a,b;
for(i=0;i<n;i++)
{
count[i] = 0;
father[i] = i;
}
for(i=0;i<m;i++)
{
scanf("%d%d",&a,&b);
count[a]++;
count[b]++;
merge(a,b);
}
for(i=0;i<m;i++)
{
if(count[i]%2 != 0)
{
tragedy = true;
break;
}
if(father[i]==i)
cnt ++;
if(cnt>1)
{
tragedy = true;
break;
}
}
if(tragedy)
cout<<0<<endl;
else
cout<<1<<endl;
}
return 0;
}
展开
 我来答
火红枫—领军者ceb
2011-03-07 · 超过14用户采纳过TA的回答
知道答主
回答量:77
采纳率:0%
帮助的人:42.3万
展开全部
把Count改啦,,,好想count不能放外面,,,具体是什么原因我也不清楚,,,
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式