이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int nmax = 1e3 + 5;
bool vec[nmax];
vector<int> g[nmax];
int main() {
int n, m;
cin >> n >> m;
if(m == n - 1) {
cout << "YES\n1\n1\n";
}
else if(m == n) {
for(int i = 0, x, y; i < m; i++) {
cin >> x >> y;
g[x].push_back(y);
g[y].push_back(x);
}
for(int i = 1; i <= n; i++) {
if(g[i].size() != 2) {
cout << "NO\n";
return 0;
}
}
cout << "NO\n";
}
else
cout << "YES\n1\n1\n";
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |