# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1092092 | vjudge1 | Bosses (BOI16_bosses) | C++17 | 486 ms | 856 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define int long long
#define pb push_back
using namespace std;
const int maxn = 5e3 + 10;
int n, h[maxn];
bool mark[maxn];
vector <int> adj[maxn];
queue <int> q;
int32_t main (){
ios_base::sync_with_stdio(0);
int n;
cin >> n;
for (int x, y, i = 0; i < n; i++){
cin >> x;
for (int y, j = 0; j < x; j++)
cin >> y,
adj[--y].pb(i);
}
int ans = 1e15;
for (int i = 0; i < n; i++){
for (int i = 0; i < n; i++) mark[i] = h[i] = 0;
q.push(i), mark[i] = 1, h[i] = 1;
int tmp = 0, cnt = 0;
while (q.size()){
int v = q.front(); q.pop();
tmp += h[v];
cnt++;
for (auto u : adj[v])
if (!mark[u])
q.push(u), mark[u] = 1, h[u] = h[v] + 1;
}
if (cnt == n) ans = min(ans, tmp);
}
cout << ans;
}
컴파일 시 표준 에러 (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... |