제출 #767618

#제출 시각아이디문제언어결과실행 시간메모리
7676181neBosses (BOI16_bosses)C++14
100 / 100
447 ms716 KiB
/* * author : Apiram * created: 27.06.2023 03:25:28 */ #include<bits/stdc++.h> using namespace std; int main(){ ios_base::sync_with_stdio(false); cin.tie(0); int n;cin>>n; vector<vector<int>>adj(n); for (int i = 0;i<n;++i){ int k;cin>>k; for (int j = 0;j<k;++j){ int x;cin>>x; --x; adj[x].push_back(i); } } int pos = 1e9; for (int i = 0;i<n;++i){ queue<int>q; int curv = 1; vector<int>visited(n,false); visited[i] = true; int ans = 0; vector<int>depth(n,1); q.push(i); while(!q.empty()){ auto u = q.front(); q.pop(); ans+=depth[u]; for (const int &x:adj[u]){ if (!visited[x]){ visited[x] = true; depth[x] += depth[u]; q.push(x); curv++; } } } if (curv == n){ pos = min(pos,ans); } } cout<<pos<<'\n'; return 0; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...