이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int main() {
int n;
cin >> n;
vector<int> edges[n + 1];
for(int i = 1; i <= n; ++i) {
int k;
cin >> k;
for(int j = 0; j < k; ++j) {
int x;
cin >> x;
edges[x].push_back(i);
}
}
int res = 1e9;
bool vis[n + 1];
for(int i = 1; i <= n; ++i) {
memset(vis, 0, sizeof(vis));
queue<pair<int, int>> q;
q.push({i, 1});
int cur = 0, cnt = 0;
while(q.size()) {
int nd = q.front().first, dist = q.front().second;
q.pop();
if(vis[nd])
continue;
++cnt;
vis[nd] = 1;
cur += dist;
for(auto j : edges[nd]) {
if(!vis[j])
q.push({j, dist + 1});
}
}
if(cnt == n)
res = min(res, cur);
}
cout << res << endl;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |