# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
532592 | GioChkhaidze | Bosses (BOI16_bosses) | C++17 | 790 ms | 700 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define ll long long
#define pb push_back
using namespace std;
const int N = 5005;
vector < ll > g[N];
ll res, ans = 1e18, dep[N];
main () {
ios::sync_with_stdio(false);
cin.tie(NULL), cout.tie(NULL);
ll n;
cin >> n;
for (int i = 1; i <= n; ++i) {
ll sz;
cin >> sz;
for (int j = 1; j <= sz; ++j) {
ll x;
cin >> x;
g[x].pb(i);
}
}
queue < ll > q;
for (int i = 1; i <= n; ++i) {
for (int j = 1; j <= n; ++j) {
dep[j] = 0;
}
res = 0;
q.push(i);
dep[i] = 1;
while (q.size()) {
int x = q.front();
q.pop();
res += dep[x];
for (int j = 0; j < g[x].size(); ++j) {
int to = g[x][j];
if (!dep[to]) {
dep[to] = dep[x] + 1;
q.push(to);
}
}
}
bool bo = false;
for (int j = 1; j <= n; ++j) {
if (!dep[j]) bo = true;
}
if (!bo) {
ans = min(ans, res);
}
res = 0;
}
assert(ans != 1e18);
cout << ans << "\n";
}
컴파일 시 표준 에러 (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... |