# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
79529 | FutymyClone | Bosses (BOI16_bosses) | C++14 | 700 ms | 1020 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int N = 5e3 + 5;
vector <int> g[N];
bool visited[N];
int val[N], n, ans = 1e9;
void bfs (int s) {
queue <int> q; q.push(s); visited[s] = true;
while (!q.empty()) {
int u = q.front(); q.pop();
for (auto v: g[u]) {
if (!visited[v]) {
visited[v] = true;
q.push(v);
val[v] = val[u] + 1;
}
}
}
}
int main(){
scanf("%d", &n);
for (int i = 1; i <= n; i++) {
int num; scanf("%d", &num);
for (int j = 0; j < num; j++) {
int v; scanf("%d", &v);
g[v].push_back(i);
}
}
for (int i = 1; i <= n; i++) {
memset(visited, 0, sizeof(visited));
val[i] = 1;
bool f = true;
bfs(i);
for (int j = 1; j <= n; j++) {
if (!visited[j]) {
f = false;
break;
}
}
if (!f) continue;
int sum = 0;
for (int j = 1; j <= n; j++) sum += val[j];
ans = min(ans, sum);
}
printf("%d", ans);
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |