이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int n;
vector<int> g[5005];
vector<int> bfs(int nod)
{
vector<int> d(n + 1);
for (int i = 1; i <= n; i++)
d[i] = -1;
d[nod] = 0;
queue<int> q;
q.push(nod);
while (!q.empty())
{
int x = q.front();
q.pop();
for (auto vecin : g[x])
{
if (d[vecin] == -1)
{
d[vecin] = 1 + d[x];
q.push(vecin);
}
}
}
return d;
}
int 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 ans = 1e9;
for (int i = 1; i <= n; i++)
{
vector<int> d = bfs(i);
bool cringe = false;
for (int j = 1; j <= n; j++)
if (d[j] == -1)
cringe = true;
if (!cringe)
{
int cur = 0;
for (int j = 1; j <= n; j++)
cur += d[j] + 1;
ans = min(ans,cur);
//cout << i << ' ' << cur << endl;
}
}
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... |