이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
#define pb push_back
const int N = 5e3 + 5;
int n, ans = 1e9, cur, h[N];
vector<int> gr[N];
void bfs (int u) {
queue<int> q; q.push(u); h[u] = 1;
while (!q.empty() ) {
u = q.front(); q.pop();
for (int v : gr[u]) if (!h[v]) {
h[v] = h[u] + 1;
q.push(v);
}
cur += h[u];
}
}
int main () {
ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
cin >> n;
for (int u = 1; u <= n; ++u) {
int K; cin >> K;
while (K --) {
int v; cin >> v;
gr[v].pb(u);
}
}
for (int u = 1; u <= n; ++u) {
bfs(u);
bool ok = 1;
for (int v = 1; v <= n; ++v) if (!h[v]) ok = 0;
if (ok) ans = min(ans, cur);
cur = 0;
memset(h, 0, sizeof h);
}
cout << ans;
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... |