Submission #892368

# Submission time Handle Problem Language Result Execution time Memory
892368 2023-12-25T09:16:39 Z Pannda Newspapers (CEOI21_newspapers) C++17
0 / 100
0 ms 348 KB
#include <bits/stdc++.h>
using namespace std;

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

    int n, m;
    cin >> n >> m;

    vector<vector<int>> adj(n);
    for (int i = 0; i < m; i++) {
        int u, v;
        cin >> u >> v;
        u--;
        v--;
        adj[u].push_back(v);
        adj[v].push_back(u);
    }

    if (m != n - 1) {
        cout << "NO\n";
        cout << 0 << '\n';
        return 0;
    }

    int cnt3 = 0;
    int cnt2 = 0;
    for (int u = 0; u < n; u++) {
        if (adj[u].size() >= 3) {
            cnt3++;
        }
        if (adj[u].size() == 2) {
            cnt2++;
        }
    }

    if (cnt3 == 0) {
        cout << "YES\n";
        cout << 0 << '\n';
    } else {
        if (cnt3 >= 2) {
            cout << "NO\n";
            cout << 0 << '\n';
            return 0;
        }
        if (cnt2 >= 2) {
            cout << "NO\n";
            cout << 0 << '\n';
            return 0;
        } else {
            cout << "YES\n";
            cout << 0 << '\n';
            return 0;
        }
    }
}
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 348 KB Integer parameter [name=k] equals to 0, violates the range [1, 5]
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 348 KB Integer parameter [name=k] equals to 0, violates the range [1, 5]
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 348 KB Integer parameter [name=k] equals to 0, violates the range [1, 5]
2 Halted 0 ms 0 KB -