답안 #856033

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
856033 2023-10-02T15:09:07 Z Cyanmond Mousetrap (CEOI17_mousetrap) C++17
0 / 100
219 ms 67012 KB
#include <bits/stdc++.h>

using namespace std;

#define rep(i, l, r) for (int i = (l); i < (r); ++i)
#define per(i, l, r) for (int i = (r - 1); i >= l; --i)
#define ALL(x) (x).begin(), (x).end()

using i64 = long long;

void main_() {
    int N, T, M;
    cin >> N >> T >> M;
    --T, --M;
    if (T == M) {
        cout << 0 << endl;
        return;
    }

    vector<int> A(N - 1), B(N - 1);
    vector<vector<int>> Tree(N);
    rep(i, 0, N - 1) {
        cin >> A[i] >> B[i];
        Tree[--A[i]].push_back(--B[i]);
        Tree[B[i]].push_back(A[i]);
    }

    vector<bool> isPath(N);
    vector<int> path;
    auto dfs = [&](auto &&self, const int v, const int p) -> bool {
        bool ret = false;
        for (const int t : Tree[v]) {
            if (t == p) continue;
            ret |= self(self, t, v);
        }
        if (v == T) ret = true;
        isPath[v] = ret;
        if (ret) path.push_back(v);
        return ret;
    };
    dfs(dfs, M, -1);
    reverse(ALL(path));

    vector<int> dp(N);
    auto dfs2 = [&](auto &&self, const int v, const int p) -> int {
        vector<int> vals;
        for (const int t : Tree[v]) {
            if (t == p) continue;
            if (isPath[t]) continue;
            vals.push_back(self(self, t, v));
        }
        sort(ALL(vals), greater());
        int cost = -1;
        if (vals.empty()) cost = 0;
        else if (vals.size() == 1) cost = 1;
        else cost = vals[1] + (int)(vals.size()) - 1;
        dp[v] = cost;
        return dp[v] + 1;
    };

    i64 ans = 1ll << 60;
    int S = (int)path.size();
    vector<int> rs(S);
    per(i, 1, S) {
        rs[i - 1] = rs[i] + (int)Tree[path[i - 1]].size() - 2;
    }
    vector<vector<int>> cList(S);
    rep(i, 0, S - 1) {
        vector<int> vals;
        for (const int t : Tree[path[i]]) {
            if (isPath[t]) continue;
            vals.push_back(dp[t]);
        }
        rep(j, 0, (int)vals.size()) cList[i].push_back(vals[j] + (int)vals.size() - j);
        cList[i].push_back(-1);
    }

    /*
    rep(i, 0, S) {
        for (const auto e : cList[i]) cerr << e << ' ';
        cerr << endl;
    }
    */

    int ok = 1 << 30, ng = -1;
    while (ok - ng > 1) {
        const auto m = (ok + ng) / 2;
        int cnt = 0;
        bool isOk = true;
        rep(i, 0, S - 1) {
            int baseCost = rs[i + 1];
            int lm = -1;
            rep(j, 0, (int)cList[i].size()) {
                if (cnt + j + cList[i][j] + 1 + baseCost <= m) {
                    lm = j;
                    break;
                }
            }
            if (lm == -1) {
                isOk = false;
                break;
            }
            cnt += lm;
            if (cnt > i + 1) {
                isOk = false;
                break;
            }
        }
        (isOk ? ok : ng) = m;
    }

    cout << ok << endl;
}

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    main_();
}

Compilation message

mousetrap.cpp: In function 'void main_()':
mousetrap.cpp:45:10: warning: variable 'dfs2' set but not used [-Wunused-but-set-variable]
   45 |     auto dfs2 = [&](auto &&self, const int v, const int p) -> int {
      |          ^~~~
mousetrap.cpp:61:9: warning: unused variable 'ans' [-Wunused-variable]
   61 |     i64 ans = 1ll << 60;
      |         ^~~
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 348 KB Output is correct
2 Correct 0 ms 348 KB Output is correct
3 Correct 1 ms 348 KB Output is correct
4 Correct 0 ms 348 KB Output is correct
5 Correct 0 ms 348 KB Output is correct
6 Correct 0 ms 348 KB Output is correct
7 Incorrect 0 ms 348 KB Output isn't correct
8 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 219 ms 67012 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 348 KB Output is correct
2 Correct 0 ms 348 KB Output is correct
3 Correct 1 ms 348 KB Output is correct
4 Correct 0 ms 348 KB Output is correct
5 Correct 0 ms 348 KB Output is correct
6 Correct 0 ms 348 KB Output is correct
7 Incorrect 0 ms 348 KB Output isn't correct
8 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 348 KB Output is correct
2 Correct 0 ms 348 KB Output is correct
3 Correct 1 ms 348 KB Output is correct
4 Correct 0 ms 348 KB Output is correct
5 Correct 0 ms 348 KB Output is correct
6 Correct 0 ms 348 KB Output is correct
7 Incorrect 0 ms 348 KB Output isn't correct
8 Halted 0 ms 0 KB -