# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
472539 | 2021-09-13T17:24:43 Z | ZaZo_ | Political Development (BOI17_politicaldevelopment) | C++14 | 70 ms | 1868 KB |
#include <bits/stdc++.h> #define ZAZO ios::sync_with_stdio(0);cin.tie(0);cout.tie(0); #define int long long using namespace std; vector<int>edges[50001]; int vis[50001]={0}; int mx=1,n,k; void dfs(int node , int cnt) { if(vis[node]) mx=max(min(cnt,k),mx); vis[node] = 1; if(cnt>k) return ; for(int i = 0 ; i < edges[node].size(); i ++) { if(!vis[edges[node][i]]) dfs(edges[node][i],cnt+1); } } int32_t main() { ZAZO cin >> n >> k ; for(int i = 0 ; i < n ; i ++) { int d; cin>>d; for(int j = 0 ; j < d ; j ++) { int x; cin>>x; edges[i].push_back(x); edges[x].push_back(i); } } for(int i = 0 ; i < n ; i ++) { dfs(i,0); memset(vis,0,sizeof vis); } cout<<mx<<endl; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 1868 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 1868 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 70 ms | 1868 KB | Output is correct |
2 | Incorrect | 1 ms | 1868 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 1868 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 1868 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |