Submission #528148

# Submission time Handle Problem Language Result Execution time Memory
528148 2022-02-19T12:58:48 Z jesus_coconut Newspapers (CEOI21_newspapers) C++17
0 / 100
0 ms 312 KB
#include <bits/stdc++.h>

using namespace std;

int n, m;
vector<vector<int>> adj;

void load() {
  cin >> n >> m;
  adj.resize(n);
  for (int i = 0; i < m; ++i) {
	int a, b;
	cin >> a >> b;
	--a; --b;
	adj[a].push_back(b);
	adj[b].push_back(a);
  }
}

void solve2() {
  if (n <= 3) {
	cout << "YES\n";
	cout << "2\n2 2\n";
	return;
  }
  cout << "YES\n";
  cout << 2 * n - 1 << '\n';
  for (int i = 1; i <= n; ++i) {
	cout << i << ' ';
  }
  for (int i = n; i > 1; --i) {
	cout << i << ' ';
  }
  cout << '\n';
}

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

  load();
  if (n == 1) {
	cout << "YES\n";
	cout << "1\n1\n";
  }

  if (m == n-1) {
	solve2();
  }

  return 0;
}
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 204 KB Extra information in the output file
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 312 KB Extra information in the output file
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 204 KB Extra information in the output file
2 Halted 0 ms 0 KB -