Submission #161186

# Submission time Handle Problem Language Result Execution time Memory
161186 2019-11-01T10:48:28 Z Minnakhmetov Mousetrap (CEOI17_mousetrap) C++14
0 / 100
409 ms 63992 KB
#include <bits/stdc++.h>
    
#define ll long long
#define all(aaa) aaa.begin(), aaa.end()
 
using namespace std;

const int N = 1e6 + 5;
vector<int> g[N];
int n, m, t;

int dfs(int node, int anc) {
    int adj = g[node].size() - (anc != -1);

    vector<int> v;

    for (int to : g[node]) {
        if (to != anc) {
            v.push_back(dfs(to, node) + 1);
        }
    }

    sort(v.rbegin(), v.rend());

    if (v.empty())
        return 0;
    else if (v.size() == 1)
        return 1;
    return v[1] + adj - 1;
}
 
signed main() {
    ios_base::sync_with_stdio(0);
    cin.tie(NULL);

    cin >> n >> m >> t;

    m--, t--;

    for (int i = 0; i < n - 1; i++) {
        int a, b;
        cin >> a >> b;
        a--, b--;
        g[a].push_back(b);
        g[b].push_back(a);
    }

    g[m].erase(find(all(g[m]), t));

    cout << dfs(m, -1);
 
    return 0;
}
# Verdict Execution time Memory Grader output
1 Runtime error 55 ms 48248 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 409 ms 63992 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 55 ms 48248 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 55 ms 48248 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -