# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1150146 | bilgun | Newspapers (CEOI21_newspapers) | C++20 | 0 ms | 324 KiB |
#include<bits/stdc++.h>
using namespace std;
long long n, m;
vector<vector<long long>> g;
int main()
{
ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL);
cin >> n >> m;
g.resize(m + 1);
for( int i = 1; i <= m; i++){
long long a, b; cin >> a >> b;
g[a].push_back(b);
g[b].push_back(a);
}
for(auto it : g){
if(it.size() > 1) cout << "NO" << endl;
}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |