제출 #701993

#제출 시각아이디문제언어결과실행 시간메모리
701993Cyanmond친구 (IOI14_friend)C++17
46 / 100
23 ms2260 KiB
#include "friend.h"
#include <bits/stdc++.h>

int findSample(int n, int confidence[], int host[], int protocol[]) {
    if (n <= 10) {
        std::vector<std::vector<bool>> isFriend(n, std::vector<bool>(n));
        for (int x = 1; x < n; ++x) {
            const int h = host[x], type = protocol[x];
            if (type == 0) {
                isFriend[h][x] = isFriend[x][h] = true;
            } else if (type == 1) {
                for (int i = 0; i < n; ++i) {
                    if (isFriend[h][i]) {
                        isFriend[i][x] = isFriend[x][i] = true;
                    }
                }
            } else if (type == 2) {
                for (int i = 0; i < n; ++i) {
                    if (isFriend[h][i]) {
                        isFriend[i][x] = isFriend[x][i] = true;
                    }
                }
                isFriend[h][x] = isFriend[x][h] = true;
            }
        }

        int answer = 0;
        for (int bits = 0; bits < (1 << n); ++bits) {
            bool isOk = true;
            for (int i = 0; i < n; ++i) {
                if (not(bits & (1 << i))) {
                    continue;
                }
                for (int j = 0; j < n; ++j) {
                    if (not(bits & (1 << j))) {
                        continue;
                    }
                    if (isFriend[i][j]) {
                        isOk = false;
                    }
                }
            }
            int sum = 0;
            if (isOk) {
                for (int i = 0; i < n; ++i) {
                    if (not(bits & (1 << i))) {
                        continue;
                    }
                    sum += confidence[i];
                }
                answer = std::max(answer, sum);
            }
        }
        return answer;
    }

    bool ex0 = false, ex1 = false, ex2 = false;
    for (int i = 1; i < n; ++i) {
        if (protocol[i] == 0) {
            ex0 = true;
        }
        if (protocol[i] == 1) {
            ex1 = true;
        }
        if (protocol[i] == 2) {
            ex2 = true;
        }
    }
    if (ex0 and (not ex1) and (not ex2)) {
        // not prove
        std::vector<std::vector<bool>> isFriend(n, std::vector<bool>(n));
        for (int x = 1; x < n; ++x) {
            const int h = host[x], type = protocol[x];
            if (type == 0) {
                isFriend[h][x] = isFriend[x][h] = true;
            } else if (type == 1) {
                for (int i = 0; i < n; ++i) {
                    if (isFriend[h][i]) {
                        isFriend[i][x] = isFriend[x][i] = true;
                    }
                }
            }
        }
        std::vector<int> color(n, -1);
        int answer = 0;
        std::vector<std::pair<int, int>> dp(n, std::make_pair(0, 0));
        auto dfs = [&](auto &&self, const int v, const bool c) -> std::pair<int, int> {
            color[v] = c;
            auto &[a, b] = dp[v];
            for (int t = 0; t < n; ++t) {
                if ((not isFriend[v][t]) or color[t] != -1) {
                    continue;
                }
                auto [ra, rb] = self(self, t, not c);
                b += std::max(ra, rb);
                a += rb;
            }
            a += confidence[v];
            return {a, b};
        };
        dfs(dfs, 0, false);
        answer = std::max(dp[0].first, dp[0].second);
        return answer;
    }
    
    if (ex1 and (not ex0) and (not ex2)) {
        int answer = 0;
        for (int i = 0; i < n; ++i) {
            answer += confidence[i];
        }
        return answer;
    }

    if (ex2 and (not ex1) and (not ex0)) {
        int ma = 0;
        for (int i = 0; i < n; ++i) {
            ma = std::max(ma, confidence[i]);
        }
        return ma;
    }
    return -1;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...