이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int maxn = 5000 + 10;
vector<int> g[maxn];
int h[maxn];
int Q[maxn];
void bfs(int src){
int head = 0, tail = 0;
Q[head ++] = src;
memset(h, -1, sizeof h);
h[src] = 0;
while (tail < head){
int v = Q[tail ++];
for (auto u : g[v]){
if (h[u] == -1){
h[u] = h[v] + 1;
Q[head ++] = u;
}
}
}
}
int main(){
ios_base::sync_with_stdio(false);
int n;
cin >> n;
for (int v = 1; v <= n; v++){
int k;
cin >> k;
while (k --){
int u;
cin >> u;
g[u].push_back(v);
}
}
int answer = (n + 1) * n;
for (int v = 1; v <= n; v++){
bfs(v);
int now = 0;
for (int u = 1; u <= n; u++){
if (h[u] == -1)
now = (n + 1) * n;
else
now += h[u];
}
answer = min(answer, now);
}
cout << n + answer << 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... |