# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
78755 | scanhex | Bosses (BOI16_bosses) | C++17 | 723 ms | 1388 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
using nagai = long long;
using ll = long long;
const int N = 5000;
vector<int> g[N];
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
int n;
cin >> n;
for (int i = 0; i < n; ++i)
{
int k;
cin >> k;
for (int j = 0; j < k; ++j)
{
int x;
cin >> x;
--x;
g[x].push_back(i);
}
}
int ans = 1e9;
for (int rt = 0; rt < n; ++rt)
{
vector<int> d(n, -1);
d[rt] = 1;
vector<int> q = {rt};
for (int i = 0; i < q.size(); ++i)
{
int x = q[i];
for (int y : g[x])
{
if (d[y] == -1)
d[y] = d[x] + 1, q.push_back(y);
}
}
if (count(d.begin(), d.end(), -1))
continue;
ans = min(ans, accumulate(d.begin(), d.end(), 0));
}
cout << ans << '\n';
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... |