# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
704256 | anha3k25cvp | Bosses (BOI16_bosses) | C++14 | 633 ms | 668 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define ll long long
#define dl double
#define st first
#define nd second
#define II pair <int, int>
using namespace std;
const int N = 1 + 1e5;
const int inf = 7 + 1e9;
int n;
vector <int> h;
vector <vector <int>> g;
int cal(int root) {
h.assign(n + 1, 0);
queue <int> q;
q.push(root);
h[root] = 1;
int cnt = 0;
while (!q.empty()) {
int u = q.front(); q.pop();
cnt ++;
for (int v : g[u])
if (!h[v]) {
h[v] = h[u] + 1;
q.push(v);
}
}
if (cnt < n)
return inf;
int ans = 0;
for (int i = 1; i <= n; i ++)
ans += h[i];
return ans;
}
int main() {
#define TASKNAME "bosses"
ios_base :: sync_with_stdio (0);
cin.tie (0);
if ( fopen( TASKNAME".inp", "r" ) ) {
freopen( TASKNAME".inp", "r", stdin );
freopen( TASKNAME".out", "w", stdout );
}
cin >> n;
g.resize(n + 1);
for (int i = 1; i <= n; i ++) {
int k;
cin >> k;
while (k --) {
int u;
cin >> u;
g[u].push_back(i);
}
}
int ans = inf;
for (int i = 1; i <= n; i ++)
ans = min(ans, cal(i));
cout << 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... |