0_0_28121288_31032.cpp:6:12: error: 'N' was not declared in this scope
int father[N],vis[N];
^
0_0_28121288_31032.cpp:6:19: error: 'N' was not declared in this scope
int father[N],vis[N];
^
0_0_28121288_31032.cpp: In function 'int Find(int)':
0_0_28121288_31032.cpp:10:11: error: 'father' was not declared in this scope
if(x!=father[x])
^
0_0_28121288_31032.cpp: In function 'void Union(int, int)':
0_0_28121288_31032.cpp:18:14: error: 'father' was not declared in this scope
if(x!=y) father[y]=x;
^
0_0_28121288_31032.cpp: In function 'void del(int)':
0_0_28121288_31032.cpp:22:5: error: 'father' was not declared in this scope
father[x]=cnt;
^
0_0_28121288_31032.cpp: In function 'int main()':
0_0_28121288_31032.cpp:33:13: error: 'father' was not declared in this scope
father[i]=i+n;
^
0_0_28121288_31032.cpp:35:13: error: 'father' was not declared in this scope
father[i]=i;
^
0_0_28121288_31032.cpp:53:16: error: 'vis' was not declared in this scope
memset(vis,0,sizeof(vis));
^
|