제출 #1011349

#제출 시각아이디문제언어결과실행 시간메모리
1011349MilosMilutinovicNewspapers (CEOI21_newspapers)C++14
4 / 100
1 ms460 KiB
#include <bits/stdc++.h> using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(0); int n, m; cin >> n >> m; for (int i = 0; i < m; i++) { int u, v; cin >> u >> v; } cout << "YES" << '\n'; if (n == 1) { cout << 1 << '\n' << 1 << '\n'; } if (n == 2) { cout << 2 << '\n' << 2 << " " << 2 << '\n'; } if (n >= 3) { cout << 2 * (n - 2) << '\n'; for (int i = 2; i < n; i++) { cout << i << " " << i << " "; } } return 0; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...