0_0_15397033_12092.cpp:1:2: error: invalid preprocessing directive #incldue
#incldue <iostream>
^
0_0_15397033_12092.cpp: In function 'void Tarjan(int)':
0_0_15397033_12092.cpp:9:2: error: 'time' was not declared in this scope
time++;
^
0_0_15397033_12092.cpp:10:2: error: 'Dfn' was not declared in this scope
Dfn[u]=Low[u]=time;
^
0_0_15397033_12092.cpp:10:9: error: 'Low' was not declared in this scope
Dfn[u]=Low[u]=time;
^
0_0_15397033_12092.cpp:11:2: error: 'tail' was not declared in this scope
tail++; Stack[tail]=x;
^
0_0_15397033_12092.cpp:11:10: error: 'Stack' was not declared in this scope
tail++; Stack[tail]=x;
^
0_0_15397033_12092.cpp:11:22: error: 'x' was not declared in this scope
tail++; Stack[tail]=x;
^
0_0_15397033_12092.cpp:12:2: error: 'f' was not declared in this scope
f[u]=true;
^
0_0_15397033_12092.cpp:13:13: error: 'head' was not declared in this scope
for (int i=head[u];i!=-1;i=edge[i].next)
^
0_0_15397033_12092.cpp:13:29: error: 'edge' was not declared in this scope
for (int i=head[u];i!=-1;i=edge[i].next)
^
0_0_15397033_12092.cpp:15:3: error: 'j' was not declared in this scope
j=edge[i].to;
^
0_0_15397033_12092.cpp:19:8: error: 'flag' was not declared in this scope
if (flag) return;
^
0_0_15397033_12092.cpp:20:28: error: 'Min' was not declared in this scope
Low[u]=Min(Low[u],Low[j]);
^
0_0_15397033_12092.cpp:24:10: error: 'i' was not declared in this scope
if (Dfn[i]==Low[i])
^
0_0_15397033_12092.cpp:26:3: error: 'ans' was not declared in this scope
ans++; int temp=0;
^
0_0_15397033_12092.cpp:29:4: error: 'j' was not declared in this scope
j=Stack[tail--];
^
0_0_15397033_12092.cpp:34:5: error: 'flag' was not declared in this scope
flag=true;
^
0_0_15397033_12092.cpp:38:10: error: 'j' was not declared in this scope
while (j!=i)
^
0_0_15397033_12092.cpp:39:2: error: expected ';' before '}' token
}
^
0_0_15397033_12092.cpp:40:6: error: 'flag' was not declared in this scope
if (flag) return;
^
0_0_15397033_12092.cpp: In function 'int main()':
0_0_15397033_12092.cpp:44:9: error: 'time' was not declared in this scope
int T; time=0;
^
0_0_15397033_12092.cpp:48:15: error: 'n' was not declared in this scope
scanf("%d",&n);
^
0_0_15397033_12092.cpp:51:15: error: 'str' was not declared in this scope
scanf("%s",str+1);
^
0_0_15397033_12092.cpp:54:6: error: 'g' was not declared in this scope
g[i][j]=true;
^
0_0_15397033_12092.cpp:56:10: error: 'low' was not declared in this scope
memset(low,0,sizeof(low));
^
0_0_15397033_12092.cpp:57:10: error: 'dfn' was not declared in this scope
memset(dfn,0,sizeof(dfn));
^
0_0_15397033_12092.cpp:59:9: error: 'Dfn' was not declared in this scope
if (!Dfn[i])
^
|