이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define int long long
const int N = 5000;
vector<int> adj[N];
bool explored[N];
int dist[N];
int n, c;
int solveTestCase(int test) {
cin >> n;
for (int i = 0; i < n; i++) {
int k, v;
cin >> k;
while (k--) {
cin >> v;
adj[v - 1].push_back(i);
}
}
int ans = 1e18;
for (int i = 0; i < n; i++) {
fill(dist, dist + N, 1e18);
fill(explored, explored + N, false);
int val = 1;
dist[i] = 1;
explored[i] = true;
queue<int> q;
q.push(i);
c = 1;
while (!q.empty()) {
int v = q.front();
q.pop();
for (int j : adj[v]) {
if (!explored[j])
dist[j] = dist[v] + 1, val += dist[j], q.push(j), explored[j] = true, c++;
}
}
if (c == n)
ans = min(ans, val);
}
cout << ans;
}
signed main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
cout.tie(nullptr);
int test = 1;
//cin >> test;
for (int i = 1; i <= test; i++)
solveTestCase(i);
}
컴파일 시 표준 에러 (stderr) 메시지
bosses.cpp: In function 'long long int solveTestCase(long long int)':
bosses.cpp:49:1: warning: no return statement in function returning non-void [-Wreturn-type]
}
^
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |