이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int N;
bool adjMat[5001][5001];
long long bfs(int root) {
vector<bool> seen(N+1);
queue<pair<int, long long>> q; // node, depth
q.push({root, 1}); // starting depth at one
seen[root] = true;
long long ans = 0;
while (!q.empty()) {
pair<int, long long> cur = q.front();
int u = cur.first;
long long depth = cur.second;
q.pop();
ans += depth;
for (int v = 1; v <= N; v++) {
if (adjMat[u][v] && !seen[v]) {
q.push({v, depth+1});
seen[v] = true;
}
}
}
return ans;
}
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
cin >> N;
for (int v = 1; v <= N; v++) {
int k;
cin >> k;
for (int i = 0; i < k; i++) {
int u;
cin >> u;
adjMat[u][v] = true;
}
}
long long ans = LLONG_MAX;
for (int i = 1; i <= N; i++) {
ans = min(ans, bfs(i));
}
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... |