답안 #897420

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
897420 2024-01-03T04:55:13 Z NeroZein Newspapers (CEOI21_newspapers) C++17
0 / 100
0 ms 348 KB
#include "bits/stdc++.h"
using namespace std;

#ifdef Nero
#include "Deb.h"
#else
#define deb(...)
#endif

int main() {
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  int n, m;
  cin >> n >> m;
  for (int i = 0; i < m; ++i) {
    int u, v;
    cin >> u >> v;
  }
  cout << "YES" << '\n';
  cout << (n - 2) * 2 << '\n';
  if (n % 2) {
    for (int i = 2; i <= n - 1; ++i) {
      cout << i << ' ';
    }
    for (int i = 2; i <= n - 1; ++i) {
      cout << i << ' ';
    }
  } else {
    for (int i = 2; i <= n - 1; ++i) {
      cout << i << ' ';
    }
    for (int i = n - 1; i >= 2; --i) {
      cout << i << ' ';
    }
  }
  return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 348 KB Integer parameter [name=k] equals to -2, violates the range [1, 5]
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 348 KB Integer parameter [name=k] equals to -2, violates the range [1, 5]
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 348 KB Integer parameter [name=k] equals to -2, violates the range [1, 5]
2 Halted 0 ms 0 KB -