0_0_32869296_28250.cpp:1:7: error: stray '#' in program
<code>#include<bits/stdc++.h>
^
0_0_32869296_28250.cpp:1:1: error: expected unqualified-id before '<' token
<code>#include<bits/stdc++.h>
^
0_0_32869296_28250.cpp:19:1: error: 'stack' does not name a type
stack<int> sta;
^
0_0_32869296_28250.cpp: In function 'void cal()':
0_0_32869296_28250.cpp:29:5: error: 'priority_queue' was not declared in this scope
priority_queue<Item> q;
^
0_0_32869296_28250.cpp:29:24: error: expected primary-expression before '>' token
priority_queue<Item> q;
^
0_0_32869296_28250.cpp:29:26: error: 'q' was not declared in this scope
priority_queue<Item> q;
^
0_0_32869296_28250.cpp: In function 'int tarjan(int, int)':
0_0_32869296_28250.cpp:50:13: error: 'sta' was not declared in this scope
sta.push(i);
^
0_0_32869296_28250.cpp:62:13: error: 'sta' was not declared in this scope
sta.push(i);
^
0_0_32869296_28250.cpp: In function 'int main()':
0_0_32869296_28250.cpp:70:32: error: 'scanf' was not declared in this scope
while(~scanf("%d%d", &n, &m)) {
^
0_0_32869296_28250.cpp:71:16: error: 'sta' was not declared in this scope
while(!sta.empty()) sta.pop();
^
0_0_32869296_28250.cpp:74:34: error: 'memset' was not declared in this scope
memset(dfn, 0, sizeof dfn);
^
0_0_32869296_28250.cpp:92:45: error: 'printf' was not declared in this scope
printf("Case #%d: %u\n", kase++, ans);
^
|