CSES - NOI 2019 - Results
Submission details
Task:Distance Code
Sender:William Bille Meyling
Submission time:2019-03-07 00:14:55 +0200
Language:Java
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
Test results
testverdicttimegroup
#1ACCEPTED0.26 s1, 2, 3details
#2ACCEPTED0.25 s1, 2, 3details
#3ACCEPTED0.24 s1, 2, 3details
#40.25 s1, 2, 3details
#50.25 s1, 2, 3details
#60.26 s1, 2, 3details
#70.25 s1, 2, 3details
#80.24 s1, 2, 3details
#90.25 s1, 2, 3details
#100.26 s1, 2, 3details
#110.25 s1, 2, 3details
#120.29 s2, 3details
#130.28 s2, 3details
#140.28 s2, 3details
#150.29 s2, 3details
#16--3details
#17--3details
#18--3details
#19--3details
#200.26 s1, 2, 3details

Code

//thinking depth first with iterative deepening maybe (though slow)
//using heap

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.HashSet;

public class Distance_Code_v6 {

    private static boolean[] visited;

    //could merge these classes

    private static class Node{
        int number;
        HashSet<Node> nbs = new HashSet<>();
        Node parent = null;
        public Node(int number){
            this.number = number;
        }
    }

    private static class Node2{

        int number;
        ArrayList<Node2> node_child = new ArrayList<>();
        Node2 parent;

        public Node2(int number){
            this.number = number;
        }
    }

    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        int type = Integer.valueOf(br.readLine());
        int N = Integer.valueOf(br.readLine());
        if(type == 1){
            ArrayList<Node> nodes = new ArrayList<>();
            for(int i = 0; i < N; i++) nodes.add(null);
            for(int i = 0; i < N - 1; i++){
                String[] input = br.readLine().split(" ");
                int a = Integer.valueOf(input[0])-1;
                int b = Integer.valueOf(input[1])-1;
                if(nodes.get(a) == null){
                    nodes.set(a, new Node(a));
                }
                if(nodes.get(b) == null) {
                    nodes.set(b, new Node(b));
                }
                nodes.get(a).nbs.add(nodes.get(b));
                nodes.get(b).nbs.add(nodes.get(a));
            }
            Node start = nodes.get(0);
            /*for(int i = 0; i < nodes.size(); i++){
                if(nodes.get(i).nbs.size() == 1){
                    start = nodes.get(i);
                }
            }*/
            visited = new boolean[N+1];
            visited[start.number] = true;
            dfs1(start);
            dfs(start);
        }else{
            inputs = br.readLine().split(" ");
            Node2 startNode = new Node2(nextNumber);
            decode(startNode);
            dfs2(startNode);
        }
    }

    private static void dfs(Node node){
        if(node.nbs.size() == 0){
            System.out.print((node.number+1) + " ");
            node.parent.nbs.remove(node);
            return;
        }
        ArrayList<Node> children = new ArrayList<>(node.nbs);
        for(int i = children.size()-1; i > -1; i--){
            dfs(children.get(i));
        }
        System.out.print((node.number+1) + " ");
    }

    private static void dfs1(Node node){
        node.nbs.remove(node.parent);
        for(Node n : node.nbs){
            n.parent = node;
            dfs1(n);
        }
    }

    private static int nextNumber = 1;
    private static String[] inputs;

    private static void decode(Node2 node){
        Node2 current = node;
        for(int i = 0; i < inputs.length; i++){
            //micro optimization: save inputs[i] value as int before
            int diff = Integer.valueOf(inputs[i]);
            if(current.parent == null){
                nextNumber++;
                current.parent = new Node2(nextNumber);
                current.parent.node_child.add(current);
            }
            current = current.parent;
            for(int j = 2; j < diff; j++){
                nextNumber++;
                Node2 newNode = new Node2(nextNumber);
                node.node_child.add(newNode);
                current = newNode;
            }
            //current = rec(current, diff);
        }
        dfs2(current);
    }

    private static Node2 rec(Node2 node, int counter){
        //tail recursion
        if(counter == 1){
            return node;
        }
        nextNumber++;
        Node2 newNode = new Node2(nextNumber);
        node.node_child.add(newNode);
        return rec(newNode, counter-1);
    }

    private static void dfs2(Node2 node){
        for(int i = 0; i < node.node_child.size(); i++){
            System.out.println(node.number + " " + node.node_child.get(i).number);
            dfs2(node.node_child.get(i));
        }
    }
}

Test details

Test 1

Group: 1, 2, 3

Verdict: ACCEPTED

input
1
2
2 1

correct output
(empty)

user output
2 1

Test 2

Group: 1, 2, 3

Verdict: ACCEPTED

input
1
3
3 1
2 1

correct output
(empty)

user output
3 2
2 1

Test 3

Group: 1, 2, 3

Verdict: ACCEPTED

input
1
4
3 2
2 1
4 1

correct output
(empty)

user output
4 3
3 2
2 1

Test 4

Group: 1, 2, 3

Verdict:

input
1
4
2 3
3 4
1 3

correct output
(empty)

user output
4 3
3 2
2 1

Test 5

Group: 1, 2, 3

Verdict:

input
1
5
3 5
4 1
1 3
...

correct output
(empty)

user output
6 5
5 4
1 4

Test 6

Group: 1, 2, 3

Verdict:

input
1
5
3 2
3 4
5 1
...

correct output
(empty)

user output
6 5
5 4
4 3
1 3

Test 7

Group: 1, 2, 3

Verdict:

input
1
5
4 3
1 4
4 2
...

correct output
(empty)

user output
5 4
4 3
3 2
2 1

Test 8

Group: 1, 2, 3

Verdict:

input
1
10
9 3
8 9
2 9
...

correct output
(empty)

user output
10 9
9 8
8 7
7 6
6 5
...

Test 9

Group: 1, 2, 3

Verdict:

input
1
10
9 2
5 8
7 1
...

correct output
(empty)

user output
15 14
14 13
13 12
12 11
11 10
...

Test 10

Group: 1, 2, 3

Verdict:

input
1
10
10 4
9 1
4 7
...

correct output
(empty)

user output
11 10
10 9
9 8
1 8

Test 11

Group: 1, 2, 3

Verdict:

input
1
10
2 6
4 3
3 5
...

correct output
(empty)

user output
12 11
11 10
10 9
1 7
1 9

Test 12

Group: 2, 3

Verdict:

input
1
500
10 6
6 255
6 428
...

correct output
(empty)

user output
500 499
499 498
498 497
497 496
496 495
...

Test 13

Group: 2, 3

Verdict:

input
1
500
152 466
451 313
158 479
...

correct output
(empty)

user output
648 647
647 646
646 645
645 644
644 643
...

Test 14

Group: 2, 3

Verdict:

input
1
500
109 440
330 190
443 161
...

correct output
(empty)

user output
752 751
751 750
750 749
749 748
748 747
...

Test 15

Group: 2, 3

Verdict:

input
1
500
144 373
257 233
341 318
...

correct output
(empty)

user output
896 895
895 894
894 893
893 892
892 891
...

Test 16

Group: 3

Verdict:

input
1
100000
54983 75172
93807 75172
44082 75172
...

correct output
(empty)

user output
(empty)

Test 17

Group: 3

Verdict:

input
1
100000
88863 19059
86423 76688
98536 95984
...

correct output
(empty)

user output
(empty)

Test 18

Group: 3

Verdict:

input
1
100000
59979 6389
19097 24999
27846 82330
...

correct output
(empty)

user output
(empty)

Test 19

Group: 3

Verdict:

input
1
100000
58761 66001
25102 51081
98625 67861
...

correct output
(empty)

user output
(empty)

Test 20

Group: 1, 2, 3

Verdict:

input
1
6
2 1
3 2
4 2
...

correct output
(empty)

user output
6 5
5 4
4 3
3 2
2 1