Submission #1053070

# Submission time Handle Problem Language Result Execution time Memory
1053070 2024-08-11T08:28:41 Z kunzaZa183 Newspapers (CEOI21_newspapers) C++17
0 / 100
0 ms 348 KB
#include <bits/stdc++.h>
using namespace std;
int main() { 
  cin.tie(0)->sync_with_stdio(0);
  cin.exceptions(cin.failbit);
  int n,m;
  cin>>n>>m;
  const int maxn = 1000;
  vector<int> adjlist[maxn];
  for(int i=0;i<m;i++)
  {
    int a,b;
    cin>>a>>b;
    a--,b--;
    adjlist[a].push_back(b),adjlist[b].push_back(a);
  }
  cout<<"YES\n";
  return 0;
  if(n==1){
    cout<<"YES\n1\n1\n";
  } else if (n==2) {
    cout<<"YES\n2\n1 1\n";
  } else if (n == 3) {
    cout<<"YES\n2\n2 2\n";
  } else {
    cout<<"NO\n";
  }
}
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 348 KB Unexpected end of file - int32 expected
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 348 KB Unexpected end of file - int32 expected
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 348 KB Unexpected end of file - int32 expected
2 Halted 0 ms 0 KB -