이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int N = 5001;
vector<int> g[N];
int cnt;
long long tmp;
int cost[N];
inline void bfs(int v, int d = 1) {
queue<int> q;
tmp = cnt = 0;
memset(cost, -1, sizeof cost);
cost[v] = 1;
q.push(v);
while(!q.empty()) {
cnt++;
int src = q.front();
tmp += cost[src];
q.pop();
for (int u : g[src]) {
if (cost[u] == -1) {
cost[u] = cost[src] + 1;
q.push(u);
}
}
}
}
signed main() {
int n;
cin >> n;
for (int i = 1; i <= n; ++i) {
int k;
cin >> k;
for (int j = 0; j < k; ++j) {
int x;
cin >> x;
g[x].push_back(i);
}
}
long long ans = LLONG_MAX / 3;
for (int i = 1; i <= n; ++i) {
bfs(i);
if (cnt == n) {
ans = min(ans, tmp);
}
}
cout << ans << '\n';
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |