답안 #1102087

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1102087 2024-10-17T12:10:55 Z crafticat Viruses (BOI20_viruses) C++17
0 / 100
1 ms 336 KB
#include "bits/stdc++.h"

using namespace std;
using ll = long long;
template<typename T>
using V = vector<T>;
using vi = V<ll>;
using vvi = V<vi>;
using pi = pair<ll,ll>;
using vpi = V<pi>;

#define F0R(i, n) for(ll i = 0; i < n;i++)
#define FOR(i,a, n) for(ll i = a; i < n;i++)
#define pb push_back

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

    int g, n, m; cin >> g >> n >> m;
    V<vvi> table(g + 1);

    F0R(i, n) {
        int a, k; cin >> a >> k;
        vi gen;
        F0R(j, k) {
            int x; cin >> x;
            gen.push_back(x);
        }
        table[a].pb(gen);
    }

    vi dp(g,-1);
    while (true) {
        int minal = 1e9;
        int id = 0;

        FOR(i, 2, g) {
            for (auto v : table[i]) {
                bool pos = true;
                int sum = 0;
                for (auto x : v) {
                    if (x > 2 && dp[x] == -1) pos = false;
                    else {
                        if (x <= 2) sum++;
                        else sum += dp[x];
                    }
                }
                if (pos && sum < minal && dp[i] == -1) {
                    minal = sum;
                    id = i;
                }
            }
        }
        if (minal == 1e9) break;
        dp[id] = minal;
    }

    FOR(i, 2, g) {
        if (dp[i] == -1)
            cout << "YES\n";
        else
            cout << "NO " << dp[i] << "\n";
    }

    return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 336 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 336 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 336 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 336 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 336 KB Output isn't correct
2 Halted 0 ms 0 KB -