Submission #1586664


Source Code Expand

#include <iostream>

using namespace std;

int main()
{
    int n;
    cin >> n ;
    int A[n];
    int depth = 0;
    int currentDepth;
    int B[100005] = {0};
    for (int i=1;i<n;i++)
        cin >> A[i];
    A[0]=0;
    for (int i=1;i<n+1;i++){
        currentDepth = 0;
        for (int j=i;A[j]!=0;){
            currentDepth++;
            B[j] = currentDepth;
            j=A[j]-1;
        }
        depth=max(depth,currentDepth);
    }
    cout << depth;
    return 0;
}

Submission Info

Submission Time
Task B - Tournament
User vjudge4
Language C++14 (GCC 5.4.1)
Score 0
Code Size 481 Byte
Status RE
Exec Time 2111 ms
Memory 640 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 800
Status
AC × 1
RE × 2
AC × 3
WA × 19
TLE × 6
RE × 25
Set Name Test Cases
Sample s1.txt, s2.txt, s3.txt
All 01.txt, 02.txt, 03.txt, 04.txt, 05.txt, 06.txt, 07.txt, 08.txt, 09.txt, 10.txt, 11.txt, 12.txt, 13.txt, 14.txt, 15.txt, 16.txt, 17.txt, 18.txt, 19.txt, 20.txt, 21.txt, 22.txt, 23.txt, 24.txt, 25.txt, 26.txt, 27.txt, 28.txt, 29.txt, 30.txt, 31.txt, 32.txt, 33.txt, 34.txt, 35.txt, 36.txt, 37.txt, 38.txt, 39.txt, 40.txt, 41.txt, 42.txt, 43.txt, 44.txt, 45.txt, 46.txt, 47.txt, 48.txt, 49.txt, 50.txt, s1.txt, s2.txt, s3.txt
Case Name Status Exec Time Memory
01.txt WA 39 ms 640 KB
02.txt RE 135 ms 640 KB
03.txt WA 39 ms 640 KB
04.txt RE 133 ms 640 KB
05.txt WA 38 ms 640 KB
06.txt RE 132 ms 640 KB
07.txt RE 133 ms 640 KB
08.txt WA 39 ms 640 KB
09.txt RE 132 ms 640 KB
10.txt WA 38 ms 640 KB
11.txt TLE 2103 ms 640 KB
12.txt TLE 2103 ms 640 KB
13.txt TLE 2103 ms 640 KB
14.txt TLE 2103 ms 640 KB
15.txt TLE 2103 ms 640 KB
16.txt TLE 2111 ms 640 KB
17.txt WA 1353 ms 640 KB
18.txt RE 612 ms 640 KB
19.txt WA 130 ms 640 KB
20.txt RE 175 ms 640 KB
21.txt RE 113 ms 640 KB
22.txt WA 19 ms 640 KB
23.txt RE 114 ms 640 KB
24.txt WA 21 ms 640 KB
25.txt RE 114 ms 640 KB
26.txt WA 22 ms 640 KB
27.txt RE 121 ms 640 KB
28.txt RE 122 ms 640 KB
29.txt WA 32 ms 640 KB
30.txt RE 132 ms 640 KB
31.txt WA 37 ms 640 KB
32.txt RE 131 ms 640 KB
33.txt WA 35 ms 640 KB
34.txt RE 128 ms 640 KB
35.txt RE 127 ms 640 KB
36.txt WA 31 ms 640 KB
37.txt RE 127 ms 640 KB
38.txt WA 27 ms 640 KB
39.txt RE 120 ms 640 KB
40.txt WA 25 ms 640 KB
41.txt RE 97 ms 256 KB
42.txt RE 96 ms 256 KB
43.txt WA 1 ms 256 KB
44.txt AC 1 ms 256 KB
45.txt RE 96 ms 256 KB
46.txt WA 1 ms 256 KB
47.txt RE 96 ms 256 KB
48.txt AC 1 ms 256 KB
49.txt RE 96 ms 256 KB
50.txt WA 1 ms 256 KB
s1.txt RE 97 ms 256 KB
s2.txt AC 1 ms 256 KB
s3.txt RE 98 ms 256 KB