CSES - Datatähti 2024 alku - Results
Submission details
Task:Laskettelukeskus
Sender:Bean Benestrom
Submission time:2023-10-30 14:04:11 +0200
Language:C++ (C++20)
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
Test results
testverdicttimegroup
#1ACCEPTED0.00 s1, 2details
#20.00 s1, 2details
#30.00 s1, 2details
#40.00 s2details
#50.00 s2details
#60.00 s1, 2details
#70.00 s2details
#8ACCEPTED0.00 s1, 2details
#9ACCEPTED0.13 s2details
#10ACCEPTED0.00 s1, 2details
#11ACCEPTED0.12 s2details
#12ACCEPTED0.00 s1, 2details
#13ACCEPTED0.12 s2details

Compiler report

input/code.cpp: In function 'long int solve(const std::vector<Rinne>&, int)':
input/code.cpp:15:21: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   15 |     for (int i=0; i < rinteet[rinne].rinteet.size(); i++) {
      |                   ~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Code

#include <iostream>
#include <vector>

#define PER long int

struct Rinne
{
    PER amount;
    std::vector<int> rinteet;
};


PER solve(const std::vector<Rinne>& rinteet, int rinne) {
    PER sum = 0;
    for (int i=0; i < rinteet[rinne].rinteet.size(); i++) {
        sum += solve(rinteet, rinteet[rinne].rinteet[i]);
    }
    if (rinteet[rinne].amount > sum) { return rinteet[rinne].amount; } 
    else { return sum; }
}

Rinne new_node() {
    std::vector<int> _a = {};
    Rinne _r;
    _r.amount = 0;
    _r.rinteet = _a;
    return _r;
}


int main() {
    std::vector<Rinne> rinteet;
    rinteet.push_back(new_node());

    int amount;
    std::cin >> amount;

    int a, b;
    for (int i = 0; i < amount-1; i++) {
        std::cin >> a >> b;
        rinteet.push_back(new_node());
        rinteet[a-1].rinteet.push_back(b-1);
    }
    for (int i = 0; i < amount; i++) {
        std::cin >> a;
        rinteet[i].amount = a;
    }

    std::cout << solve(rinteet, 0);

    return 0;
}

Test details

Test 1

Group: 1, 2

Verdict: ACCEPTED

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

correct output
6

user output
6

Test 2

Group: 1, 2

Verdict:

input
100
1 73
1 64
64 23
1 88
...

correct output
2675

user output
(empty)

Test 3

Group: 1, 2

Verdict:

input
100
1 36
36 56
56 59
36 97
...

correct output
2808

user output
(empty)

Error:
malloc(): corrupted top size

Test 4

Group: 2

Verdict:

input
100000
1 45452
1 74209
45452 78960
45452 79820
...

correct output
28399367694319

user output
(empty)

Test 5

Group: 2

Verdict:

input
100000
1 31165
1 23263
31165 89516
31165 53122
...

correct output
28546840313799

user output
(empty)

Test 6

Group: 1, 2

Verdict:

input
100
1 79
79 9
79 45
45 10
...

correct output
0

user output
(empty)

Error:
terminate called after throwing an instance of 'std::bad_alloc'
  what():  std::bad_alloc

Test 7

Group: 2

Verdict:

input
100000
1 66038
1 56789
56789 7403
66038 69542
...

correct output
0

user output
(empty)

Test 8

Group: 1, 2

Verdict: ACCEPTED

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

correct output
100

user output
100

Test 9

Group: 2

Verdict: ACCEPTED

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

correct output
1000000000

user output
1000000000

Test 10

Group: 1, 2

Verdict: ACCEPTED

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

correct output
2809

user output
2809

Test 11

Group: 2

Verdict: ACCEPTED

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

correct output
26053917212428

user output
26053917212428

Test 12

Group: 1, 2

Verdict: ACCEPTED

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

correct output
5000

user output
5000

Test 13

Group: 2

Verdict: ACCEPTED

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

correct output
50000000000000

user output
50000000000000