# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1150747 | bilgun | Newspapers (CEOI21_newspapers) | C++20 | 0 ms | 324 KiB |
#include <bits/stdc++.h>
using namespace std;
const int MAXN = 1005;
vector<int> gph[MAXN];
int par[MAXN];
pair<int, int> dfs(int x, int p = -1) {
pair<int, int> ret(0, x);
for (int y : gph[x]) {
if (y != p) {
par[y] = x;
auto res = dfs(y, x);
res.first++;
ret = max(ret, res);
}
}
return ret;
}
int main() {
int n, m;
cin >> n >> m;
if (m != n - 1) {
cout << "NO" << endl;
return 0;
}
for (int i = 0; i < m; i++) {
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |