Submission details
Task:Freshman's Database
Sender:dawidwozny7
Submission time:2020-10-03 15:14:04 +0300
Language:C++ (C++11)
Status:READY
Result:ACCEPTED
Test results
testverdicttime
#1ACCEPTED0.01 sdetails
#2ACCEPTED0.01 sdetails
#3ACCEPTED0.32 sdetails
#4ACCEPTED0.37 sdetails
#5ACCEPTED0.37 sdetails
#6ACCEPTED0.37 sdetails
#7ACCEPTED0.37 sdetails
#8ACCEPTED0.37 sdetails
#9ACCEPTED0.37 sdetails
#10ACCEPTED0.37 sdetails

Code

#include <bits/stdc++.h>

using namespace std;

int parent[1000010];
int nr_kolejki[1000010];
bool na_cyklu[1000010];
bool odw[1000010];
int cykle=0;

queue<int> kol;

void DFS(int x,int nr){
odw[x]=true;
nr_kolejki[x]=nr;
kol.push(x);
int pomo;
if(odw[parent[x]]==false){
    DFS(parent[x],nr);
}else{
    if(nr_kolejki[parent[x]]==nr){
        cykle++;
        while(kol.empty()==false){
            pomo=kol.front();
            na_cyklu[pomo]=true;
            kol.pop();
        }
    }else{
    while(kol.empty()==false) kol.pop();
    }
}
return;
}

int main()
{
    int n;
    cin >> n;
    int a;
    for(int i=1;i<=n;++i){
        cin >> a;
        parent[i]=a;
    }

    for(int i=1;i<=n;++i){
        if(odw[i]==false)DFS(i,i);
    }

    cout << cykle << endl;
    return 0;
}

Test details

Test 1

Verdict: ACCEPTED

input
16
2 3 4 5 6 1 4 7 7 4 12 11 14 1...

correct output
3

user output
3

Test 2

Verdict: ACCEPTED

input
2
2 1

correct output
1

user output
1

Test 3

Verdict: ACCEPTED

input
1000000
906853 1 1 1 3 4 3 2 5 5 5 10 ...

correct output
1

user output
1

Test 4

Verdict: ACCEPTED

input
1000000
227998 891986 290950 887622 37...

correct output
6736

user output
6736

Test 5

Verdict: ACCEPTED

input
1000000
832833 455297 341097 88590 258...

correct output
16

user output
16

Test 6

Verdict: ACCEPTED

input
1000000
635299 635243 476863 88031 195...

correct output
73

user output
73

Test 7

Verdict: ACCEPTED

input
1000000
444011 366349 710148 901981 81...

correct output
244

user output
244

Test 8

Verdict: ACCEPTED

input
1000000
248398 271880 881725 521008 33...

correct output
332

user output
332

Test 9

Verdict: ACCEPTED

input
999999
938280 731633 536902 381480 65...

correct output
6771

user output
6771

Test 10

Verdict: ACCEPTED

input
999999
196127 288846 245904 406819 13...

correct output
105

user output
105