Submission #925004

# Submission time Handle Problem Language Result Execution time Memory
925004 2024-02-10T12:30:31 Z Andrey Capital City (JOI20_capital_city) C++14
0 / 100
3000 ms 524288 KB
#include <bits/stdc++.h>
using namespace std;

vector<int> haha[200001];
vector<int> bruh[200001];
vector<int> col(200001);
vector<int> par(200001,-1);
vector<int> st(200001);
vector<int> wut(0);
vector<bool> yay(200001,1);
vector<bool> no(200001,1);

void dfs(int a, int t, int t2) {
    par[a] = t;
    st[a] = 1;
    wut.push_back(a);
    for(int v: haha[a]) {
        if(v != t && v != t2) {
            dfs(v,a,t2);
            st[a]+=st[v];
        }
    }
}

int dude(int a, int t) {
    int ans = INT_MAX;
    int c = a;
    wut.clear();
    dfs(a,0,t);
    while(true) {
        bool yeah = false;
        for(int v: haha[c]) {
            if(v != t && st[v]*2 >= st[a] && st[v] < st[c]) {
                yeah = true;
                c = v;
            }
        }
        if(!yeah) {
            break;
        }
    }
    dfs(c,0,t);
    int br = -1,x = 0;
    vector<int> wow(1,col[c]);
    for(int i = 0; i < wow.size(); i++) {
        if(yay[wow[i]]) {
            yay[wow[i]] = false;
            br++;
            for(int v: bruh[wow[i]]) {
                if(par[v] == -1) {
                    x = 1;
                    break;
                }
                while(v != 0 && no[v]) {
                    no[v] = false;
                    wow.push_back(col[v]);
                    v = par[v];
                }
            }
        }
    }
    if(x == 0) {
        ans = min(ans,br);
    }
    for(int i = 0; i < wut.size(); i++) {
        no[wut[i]]= true;
        par[wut[i]] = -1;
    }
    for(int i = 0; i < wow.size(); i++) {
        yay[wow[i]] = true;
    }
    for(int v: haha[c]) {
        if(v != t) {
            ans = min(ans,dude(v,c));
        }
    }
    return ans;
}

int main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);
    cout.tie(NULL);
    int n,k,a,b;
    cin >> n >> k;
    for(int i = 0; i < n-1; i++) {
        cin >> a >> b;
        haha[a].push_back(b);
        haha[b].push_back(a);
    }
    for(int i = 1; i <= n; i++) {
        cin >> col[i];
        bruh[col[i]].push_back(i);
    }
    cout << dude(1,-1);
    return 0;
}

Compilation message

capital_city.cpp: In function 'int dude(int, int)':
capital_city.cpp:45:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   45 |     for(int i = 0; i < wow.size(); i++) {
      |                    ~~^~~~~~~~~~~~
capital_city.cpp:65:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   65 |     for(int i = 0; i < wut.size(); i++) {
      |                    ~~^~~~~~~~~~~~
capital_city.cpp:69:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   69 |     for(int i = 0; i < wow.size(); i++) {
      |                    ~~^~~~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Runtime error 1194 ms 524288 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1194 ms 524288 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 3053 ms 39848 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1194 ms 524288 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -