0_0_13467489_16874.cpp:1:10: error: #include expects "FILENAME" or <FILENAME>
#include
^
0_0_13467489_16874.cpp:2:10: error: #include expects "FILENAME" or <FILENAME>
#include
^
0_0_13467489_16874.cpp:3:10: error: #include expects "FILENAME" or <FILENAME>
#include
^
0_0_13467489_16874.cpp:4:10: error: #include expects "FILENAME" or <FILENAME>
#include
^
0_0_13467489_16874.cpp: In function 'void init()':
0_0_13467489_16874.cpp:26:32: error: 'memset' was not declared in this scope
memset(head,-1,sizeof(head));
^
0_0_13467489_16874.cpp: In function 'void tarjan(int)':
0_0_13467489_16874.cpp:41:37: error: 'min' was not declared in this scope
low[u]=min(low[u],low[v]);
^
0_0_13467489_16874.cpp:45:37: error: 'min' was not declared in this scope
low[u]=min(low[u],dfn[v]);
^
0_0_13467489_16874.cpp: In function 'void solve()':
0_0_13467489_16874.cpp:65:29: error: 'memset' was not declared in this scope
memset(dfn,0,sizeof(dfn));
^
0_0_13467489_16874.cpp: In function 'int main()':
0_0_13467489_16874.cpp:77:11: error: expected primary-expression before '%' token
scanf(%d,&T);
^
0_0_13467489_16874.cpp:77:12: error: 'd' was not declared in this scope
scanf(%d,&T);
^
0_0_13467489_16874.cpp:77:16: error: 'scanf' was not declared in this scope
scanf(%d,&T);
^
0_0_13467489_16874.cpp:80:15: error: expected primary-expression before '%' token
scanf(%d%d,&n,&m);
^
0_0_13467489_16874.cpp:85:19: error: expected primary-expression before '%' token
scanf(%d%d,&u,&v);
^
0_0_13467489_16874.cpp:88:33: error: 'memset' was not declared in this scope
memset(num,0,sizeof(num));
^
0_0_13467489_16874.cpp:92:20: error: 'Case' was not declared in this scope
printf(Case %d: -1
^
0_0_13467489_16874.cpp:93:6: error: 'printf' was not declared in this scope
,++tt);
^
0_0_13467489_16874.cpp:114:54: error: 'max' was not declared in this scope
ans=max(ans,all-(LL)num[i]*(n-num[i]));
^
0_0_13467489_16874.cpp:117:16: error: 'Case' was not declared in this scope
printf(Case %d: %I64d
^
0_0_13467489_16874.cpp:118:10: error: 'printf' was not declared in this scope
,++tt,ans);
^
|