# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
165698 | Hideo | Bosses (BOI16_bosses) | C++11 | 737 ms | 764 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
// Need to git gud and reach 1900+
#pragma GCC optimize ("O3")
#pragma GCC target ("sse4")
#include <bits/stdc++.h>
using namespace std;
#define all(s) s.begin(), s.end()
#define ok puts("ok")
#define ll long long
#define pb push_back
#define mk make_pair
#define fr first
#define sc second
#define vi vector < int >
#define pi pair < int, int >
#define prev prev123
#define next next123
#define pow pow123
#define left left123
#define right right123
const int N = 5007;
const int INF = 1e9 + 7;
int us[N];
int n, ans = INF;
vi g[N];
int bfs (int s){
memset(us, 0, sizeof(us));
queue < pi > q;
q.push(mk(s, 1));
int res = 0;
while (!q.empty()){
int v = q.front().fr, h = q.front().sc;
q.pop();
if (us[v])
continue;
us[v] = 1;
res += h;
for (int to : g[v])
if (!us[to])
q.push(mk(to, h + 1));
}
for (int i = 1; i <= n; i++){
if (!us[i])
res = INF;
}
return res;
}
main(){ // If you don't know what to do, check the text box at the bottom
cin >> n;
for (int i = 1; i <= n; i++){
int k;
scanf("%d", &k);
for (int j = 1; j <= k; j++){
int a;
scanf("%d", &a);
g[a].pb(i);
}
}
for (int i = 1; i <= n; i++)
ans = min(ans, bfs(i));
printf("%d", ans);
}
/*
Totally not inspired by BenQ's template
Things you should do:
1. Look for stupid typos in code e.g 1 instead of -1 etc
2. Check if there is no infinite loops
3. "Measure twice, cut once"
4. Stay focused
*/
컴파일 시 표준 에러 (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... |