# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
680295 | 2023-01-10T14:09:29 Z | mjhmjh1104 | Wells (CEOI21_wells) | C++17 | 18 ms | 35532 KB |
#include <cstdio> #include <vector> #include <utility> #include <algorithm> using namespace std; int n, k, K, b[1500006]; vector<int> adj[1500006]; bool dfs(int x, int dist, int prev = -1) { if (b[x]) { if (dist != -1 && dist % K) return false; dist = 0; } int ndist = dist; if (ndist != -1) ndist++; for (auto &i: adj[x]) if (i != prev && !dfs(i, ndist, x)) return false; return true; } int depth[1500006]; int dfs_depth(int x, int prev = -1) { for (auto &i: adj[x]) if (i != prev) depth[x] = max(depth[x], dfs_depth(i, x) + 1); return depth[x]; } int main() { scanf("%d%d", &n, &k); K = k; if (k % 2 == 0) K /= 2; for (int i = 0; i < n - 1; i++) { int u, v; scanf("%d%d", &u, &v); u--, v--; adj[u].push_back(v); adj[v].push_back(u); } for (int i = 0; i < n; i++) if ((int)adj[i].size() > 2) { dfs_depth(i); int cnt = 0; for (auto &j: adj[i]) if (depth[j] + 1 >= k / 2) cnt++; if (cnt > 1) b[i] = 1; } for (int i = 0; i < n; i++) if (!dfs(i, -1)) return puts("NO\n0"); puts("YES\n1"); }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Partially correct | 17 ms | 35412 KB | Output is partially correct |
2 | Runtime error | 18 ms | 35532 KB | Execution failed because the return code was nonzero |
3 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Partially correct | 17 ms | 35412 KB | Output is partially correct |
2 | Runtime error | 18 ms | 35532 KB | Execution failed because the return code was nonzero |
3 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Partially correct | 17 ms | 35412 KB | Output is partially correct |
2 | Runtime error | 18 ms | 35532 KB | Execution failed because the return code was nonzero |
3 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Partially correct | 17 ms | 35412 KB | Output is partially correct |
2 | Runtime error | 18 ms | 35532 KB | Execution failed because the return code was nonzero |
3 | Halted | 0 ms | 0 KB | - |