This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
int main() {
int N, M;
std::cin >> N >> M;
std::vector<int> A(M), B(M);
std::vector<int> deg(N);
for (int i = 0; i < M; ++i) {
std::cin >> A[i] >> B[i];
--A[i], --B[i];
++deg[A[i]];
++deg[B[i]];
}
int u = 0;
for (auto &e : deg) {
if (e >= 3) {
++u;
}
}
if (M == N - 1 and u <= 1) {
std::cout << "YES" << std::endl;
std::cout << 1 << std::endl;
std::cout << 1 << std::endl;
} else {
std::cout << "NO" << std::endl;
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |