Submission #1774638


Source Code Expand

#include <bits/stdc++.h>
using namespace std;

struct Edge
{
    int to, nxt;
};
Edge e[100010];
int head[100010], cnt;
const int LG = 60;
int dp[100010][LG + 1];

void add_edge(int a, int b)
{
    e[++cnt].to = b;
    e[cnt].nxt = head[a];
    head[a] = cnt;
}

void dfs(int nod, int tata)
{
    for (int i = head[nod]; i; i = e[i].nxt) {
        int v = e[i].to;
        if (v == tata)
            continue;
        dfs(v, nod);
        for (int j(1); j <= LG; j++)
            dp[nod][j] += dp[v][j];
    }
    int bigg0(1);
    for (int i(1); i <= LG; i++) {
        if (dp[nod][i] <= 1)
            continue;
        int p(i);
        while (dp[nod][p])
            p++;
        dp[nod][p] = 1;
        for (int i(bigg0); i < p; i++)
            dp[nod][i] = 0;
        bigg0 = p;
    }

    int p(1);
    while (dp[nod][p])
        p++;
    dp[nod][p] = 1;
    for (int i(1); i < p; i++)
        dp[nod][i] = 0;
}

int main()
{
    int n, a, b;
    scanf("%d", &n);

    while (--n) {
        scanf("%d%d", &a, &b);
        add_edge(a, b);
        add_edge(b, a);
    }

    dfs(1, 0);

    for (int i(LG); ; i--) {
        if (dp[1][i]) {
            printf("%d\n", i - 1);
            return 0;
        }
    }
    assert(false);
    return 0;
}

Submission Info

Submission Time
Task D - Uninity
User teomrn
Language C++14 (GCC 5.4.1)
Score 0
Code Size 1326 Byte
Status RE
Exec Time 111 ms
Memory 13056 KB

Compile Error

./Main.cpp: In function ‘int main()’:
./Main.cpp:54:20: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
     scanf("%d", &n);
                    ^
./Main.cpp:57:30: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
         scanf("%d%d", &a, &b);
                              ^

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 1400
Status
AC × 2
AC × 11
WA × 3
RE × 60
Set Name Test Cases
Sample s1.txt, s2.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, 51.txt, 52.txt, 53.txt, 54.txt, 55.txt, 56.txt, 57.txt, 58.txt, 59.txt, 60.txt, 61.txt, 62.txt, 63.txt, 64.txt, 65.txt, 66.txt, 67.txt, 68.txt, 69.txt, 70.txt, 71.txt, 72.txt, s1.txt, s2.txt
Case Name Status Exec Time Memory
01.txt RE 106 ms 2688 KB
02.txt RE 106 ms 2688 KB
03.txt RE 107 ms 2688 KB
04.txt RE 106 ms 2688 KB
05.txt RE 106 ms 2688 KB
06.txt RE 108 ms 2688 KB
07.txt RE 106 ms 2688 KB
08.txt RE 107 ms 2688 KB
09.txt RE 107 ms 2688 KB
10.txt RE 107 ms 2688 KB
11.txt AC 16 ms 12800 KB
12.txt AC 17 ms 13056 KB
13.txt RE 106 ms 2688 KB
14.txt RE 105 ms 2688 KB
15.txt RE 106 ms 2688 KB
16.txt RE 106 ms 2688 KB
17.txt RE 106 ms 2688 KB
18.txt RE 106 ms 2688 KB
19.txt RE 108 ms 2688 KB
20.txt RE 106 ms 2688 KB
21.txt RE 106 ms 2688 KB
22.txt RE 108 ms 2688 KB
23.txt RE 107 ms 2688 KB
24.txt RE 107 ms 2688 KB
25.txt RE 107 ms 2688 KB
26.txt RE 105 ms 2688 KB
27.txt RE 107 ms 2688 KB
28.txt RE 107 ms 2688 KB
29.txt RE 106 ms 2688 KB
30.txt RE 106 ms 2688 KB
31.txt RE 107 ms 2688 KB
32.txt RE 106 ms 2688 KB
33.txt RE 106 ms 2688 KB
34.txt RE 106 ms 2688 KB
35.txt RE 107 ms 2688 KB
36.txt RE 106 ms 2688 KB
37.txt RE 106 ms 2688 KB
38.txt RE 107 ms 2688 KB
39.txt RE 108 ms 2688 KB
40.txt RE 106 ms 2688 KB
41.txt RE 107 ms 2688 KB
42.txt RE 106 ms 2688 KB
43.txt RE 108 ms 2688 KB
44.txt RE 106 ms 2688 KB
45.txt RE 106 ms 2688 KB
46.txt RE 110 ms 2688 KB
47.txt RE 105 ms 2688 KB
48.txt RE 106 ms 2688 KB
49.txt RE 104 ms 2688 KB
50.txt RE 107 ms 2688 KB
51.txt RE 105 ms 2688 KB
52.txt RE 111 ms 2688 KB
53.txt RE 105 ms 2688 KB
54.txt RE 106 ms 2688 KB
55.txt RE 105 ms 2688 KB
56.txt RE 104 ms 2688 KB
57.txt RE 108 ms 2688 KB
58.txt RE 107 ms 2688 KB
59.txt RE 107 ms 2688 KB
60.txt RE 106 ms 2688 KB
61.txt RE 105 ms 2688 KB
62.txt RE 106 ms 2688 KB
63.txt WA 2 ms 2304 KB
64.txt WA 2 ms 2304 KB
65.txt AC 2 ms 2304 KB
66.txt AC 2 ms 2304 KB
67.txt WA 2 ms 2304 KB
68.txt AC 2 ms 2304 KB
69.txt AC 2 ms 2304 KB
70.txt AC 2 ms 2304 KB
71.txt AC 2 ms 2304 KB
72.txt AC 2 ms 2304 KB
s1.txt AC 2 ms 2304 KB
s2.txt AC 2 ms 2304 KB