CSES - Datatähti 2022 alku - Results
Submission details
Task:Tietoverkko
Sender:tonero
Submission time:2021-10-09 20:03:59 +0300
Language:C++17
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
Test results
testverdicttimegroup
#10.03 s1, 2, 3details
#2--2, 3details
#3--3details

Code

#include <bits/stdc++.h>
#include <unordered_set>

using namespace std;

#define ll long long
#define ull unsigned long long

struct pair_hash {
    inline std::size_t operator()(const std::pair<int,int> & v) const {
        return v.first+v.second*31;
    }
};

vector<pair<int, int>>* vecs[200001] = {};
std::unordered_map<pair<int,int>, int, pair_hash> traveled;


ull cur = 0;

void do_search(vector<pair<int, int>> vec, const vector<pair<int,int>>& spds, bitset<200000> visited, int curId, int start){
    for (auto e : vec)
    {
        if(visited.test(e.first)) {
            continue;
        }

        visited.set(e.first, true);
        vector<pair<int,int>> nspds = spds;
        nspds.push_back(e);

        int loopSpd = e.second;
        for (auto iter = spds.end()-1; iter != spds.begin()-1; iter--) {
            loopSpd = min(loopSpd, iter->second);
            if(traveled.find({iter->first, e.first}) != traveled.end() || traveled.find({e.first, iter->first}) != traveled.end()) continue;
            cur += loopSpd;
            //might need to check for a faster route
            traveled.insert({{iter->first, e.first}, loopSpd});
        }
        traveled.insert({{start, e.first}, loopSpd});
        bitset<200000> visited2 = visited;
        do_search(*vecs[e.first], nspds, visited2, e.first, start);
    }
}

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);
    
    int n;
    cin >> n;

    for (int i = 1; i < n; i++)
    {
        int a,b,x;
        cin >> a >> b >> x;

        vector<pair<int, int>>* newv;
        if(vecs[a] == nullptr) {
            newv = new auto(vector<pair<int, int>>());
            vecs[a] = newv;
        }
        if(vecs[b] == nullptr) {
            newv = new auto(vector<pair<int, int>>());
            vecs[b] = newv;
        }

        vecs[a]->push_back({b,x});
        vecs[b]->push_back({a,x});
    }

    for (int i = 1; i <= n; ++i) {
        auto ptr = vecs[i];
        if(ptr == nullptr) continue;
        bitset<200000> visited = bitset<200000>();
        visited.set(i, true);
        do_search(*ptr, {{i, __INT32_MAX__}}, visited, i, i);
    }

    cout << cur;

    flush(std::cout);
}

Test details

Test 1

Group: 1, 2, 3

Verdict:

input
100
1 2 74
1 3 100
2 4 50
3 5 40
...

correct output
88687

user output
86626

Test 2

Group: 2, 3

Verdict:

input
5000
1 2 613084013
1 3 832364259
2 4 411999902
3 5 989696303
...

correct output
1103702320243776

user output
(empty)

Test 3

Group: 3

Verdict:

input
200000
1 2 613084013
1 3 832364259
2 4 411999902
3 5 989696303
...

correct output
1080549209850010931

user output
(empty)