Task: | Tunnels |
Sender: | pulkitsja |
Submission time: | 2017-01-24 09:58:41 +0200 |
Language: | C++ |
Status: | READY |
Result: | 100 |
group | verdict | score |
---|---|---|
#1 | ACCEPTED | 16 |
#2 | ACCEPTED | 31 |
#3 | ACCEPTED | 53 |
test | verdict | time | group | |
---|---|---|---|---|
#1 | ACCEPTED | 0.04 s | 1 | details |
#2 | ACCEPTED | 0.04 s | 1 | details |
#3 | ACCEPTED | 0.05 s | 1 | details |
#4 | ACCEPTED | 0.04 s | 1 | details |
#5 | ACCEPTED | 0.04 s | 1 | details |
#6 | ACCEPTED | 0.05 s | 2 | details |
#7 | ACCEPTED | 0.05 s | 2 | details |
#8 | ACCEPTED | 0.04 s | 2 | details |
#9 | ACCEPTED | 0.04 s | 2 | details |
#10 | ACCEPTED | 0.04 s | 2 | details |
#11 | ACCEPTED | 0.13 s | 3 | details |
#12 | ACCEPTED | 0.09 s | 3 | details |
#13 | ACCEPTED | 0.07 s | 3 | details |
#14 | ACCEPTED | 0.06 s | 3 | details |
#15 | ACCEPTED | 0.06 s | 3 | details |
Compiler report
input/code.cpp: In function 'int main(int, const char**)': input/code.cpp:58:13: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result] sd2(n,m); ^ input/code.cpp:61:17: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result] sd2(a,b); ^
Code
#include<bits/stdc++.h>#define pb push_back#define PI acos(-1)#define mp make_pair#define fastio ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);#define F first#define sd(x) scanf("%d",&x)#define sd2(x,y) scanf("%d%d",&x,&y)#define sdl(x) scanf("%lld",&x)#define sd2l(x,y) scanf("%lld%lld",&x,&y)#define maxn 100010#define S second#define ll long long int#define inf 1000002014#define infl 1000000000000020000ll#define mod 1000000007#define clrs(x) memset(x,0,sizeof x)#define sz(x) (int) x.size()#define pi pair< int,int >#define pii pair<pi,int>#define pu push#define ld long double#define trace1(x) cerr << #x << ": " << x << endl#define trace2(x, y) cerr << #x << ": " << x << " | " << #y << ": " << y << endlusing namespace std;queue< int > q;int indeg[maxn];int outdeg[maxn];vector< pi >v[maxn];int ans[maxn];int inq[maxn];void dfs(int s){int done1 = 0;for (int i = 0; i < sz(v[s]); ++i){if(v[s][i].S == 1 || done1)continue;else{done1 = 1;v[s][i].S = 1;outdeg[s]--;indeg[v[s][i].F]--;if(indeg[v[s][i].F] == 0 && !inq[v[s][i].F]){q.push(v[s][i].F);inq[v[s][i].F] = 1;}dfs(v[s][i].F);}}}int main(int argc, char const *argv[]){//freopen("input.txt","r",stdin);//freopen("output.txt","w",stdout);int n,m,a,b;sd2(n,m);for(int i=0;i<m;i++){sd2(a,b);v[a].pb(mp(b,0));outdeg[a]++;indeg[b]++;}for (int i = 1; i <= n; ++i){if(indeg[i]==0 && outdeg[i]!=0){q.push(i);inq[i] = 1;}}int fans = 0;while(!q.empty()){int to = q.front();if(outdeg[to]==0){fans+=ans[to];q.pop();}else{ans[to]++;dfs(to);}}printf("%d\n",fans);return 0;}
Test details
Test 1
Group: 1
Verdict: ACCEPTED
input |
---|
10 20 4 5 6 4 5 1 5 9 ... |
correct output |
---|
11 |
user output |
---|
11 |
Test 2
Group: 1
Verdict: ACCEPTED
input |
---|
10 10 7 3 5 2 9 7 1 5 ... |
correct output |
---|
5 |
user output |
---|
5 |
Test 3
Group: 1
Verdict: ACCEPTED
input |
---|
10 5 5 7 3 8 5 8 3 7 ... |
correct output |
---|
4 |
user output |
---|
4 |
Test 4
Group: 1
Verdict: ACCEPTED
input |
---|
10 4 9 1 6 8 7 1 5 7 |
correct output |
---|
3 |
user output |
---|
3 |
Test 5
Group: 1
Verdict: ACCEPTED
input |
---|
10 2 10 6 2 1 |
correct output |
---|
2 |
user output |
---|
2 |
Test 6
Group: 2
Verdict: ACCEPTED
input |
---|
100 200 24 40 25 6 36 93 92 90 ... |
correct output |
---|
97 |
user output |
---|
97 |
Test 7
Group: 2
Verdict: ACCEPTED
input |
---|
100 100 98 37 91 37 60 92 46 27 ... |
correct output |
---|
60 |
user output |
---|
60 |
Test 8
Group: 2
Verdict: ACCEPTED
input |
---|
100 50 74 95 53 72 69 85 14 13 ... |
correct output |
---|
34 |
user output |
---|
34 |
Test 9
Group: 2
Verdict: ACCEPTED
input |
---|
100 40 28 76 10 81 13 52 46 83 ... |
correct output |
---|
29 |
user output |
---|
29 |
Test 10
Group: 2
Verdict: ACCEPTED
input |
---|
100 20 27 35 72 92 56 4 64 80 ... |
correct output |
---|
18 |
user output |
---|
18 |
Test 11
Group: 3
Verdict: ACCEPTED
input |
---|
100000 200000 89244 59358 22943 56710 63331 89437 56581 38400 ... |
correct output |
---|
102510 |
user output |
---|
102510 |
Test 12
Group: 3
Verdict: ACCEPTED
input |
---|
100000 100000 21701 85599 61542 21474 38081 29362 46316 64038 ... |
correct output |
---|
60593 |
user output |
---|
60593 |
Test 13
Group: 3
Verdict: ACCEPTED
input |
---|
100000 50000 86469 4833 16351 35505 59315 33011 95464 16985 ... |
correct output |
---|
35933 |
user output |
---|
35933 |
Test 14
Group: 3
Verdict: ACCEPTED
input |
---|
100000 40000 5392 23534 63204 45619 74330 25925 59678 88427 ... |
correct output |
---|
30074 |
user output |
---|
30074 |
Test 15
Group: 3
Verdict: ACCEPTED
input |
---|
100000 20000 80156 16531 71753 77661 7028 33389 17168 646 ... |
correct output |
---|
16882 |
user output |
---|
16882 |