이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <vector>
#include <queue>
#include <string.h>
#define int long long
using namespace std;
const int MAX_N = 5 * 1e3;
const int INF = (1LL << 60);
int dist[MAX_N + 1];
vector<int> g[MAX_N + 1];
int n;
int bfs(int start) {
memset(dist, 0, sizeof(dist));
queue<int> q;
q.push(start);
dist[start] = 1;
int cost = 1;
while (!q.empty()) {
int u = q.front();
q.pop();
for (int v : g[u]) {
if (!dist[v]) {
dist[v] = dist[u] + 1;
cost += dist[v];
q.push(v);
}
}
}
for (int i = 1; i <= n; i++) {
if (!dist[i]) {
return INF;
}
}
return cost;
}
signed main() {
cin >> n;
for (int i = 1; i <= n; i++) {
int k;
cin >> k;
for (int j = 1; j <= k; j++) {
int x;
cin >> x;
g[x].push_back(i);
}
}
int answer = INF;
for (int i = 1; i <= n; i++) {
answer = min(answer, bfs(i));
}
cout << answer;
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |