# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1136681 | mnbvcxz123 | Newspapers (CEOI21_newspapers) | C++20 | 1 ms | 328 KiB |
#include <bits/stdc++.h>
using namespace std;
typedef long long lint;
typedef pair<int, int> pi;
#define all(v) (v).begin(), (v).end()
#define sz(v) ((int)(v).size())
const int MAXN = 1005;
int n, m;
vector<int> gph[MAXN];
int par[MAXN], chk[MAXN], inpath[MAXN];
pi dfs(int x, int p = -1){
pi ret(0, x);
for(auto &y : gph[x]){
if(y != p){
par[y] = x;
auto z = dfs(y, x);
z.first++;
ret = max(ret, z);
}
}
return ret;
}
int main(){
scanf("%d %d",&n,&m);
if(m != n - 1){
puts("NO");
return 0;
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |