# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
388222 | negar_a | Bosses (BOI16_bosses) | C++14 | 1172 ms | 836 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
//!yrt tsuj uoy srettam gnihton no emoc
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef long double ld;
#define pb push_back
#define mp make_pair
#define pii pair <int, int>
#define fast_io ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);
#define F first
#define S second
const int maxn = 5e3 + 5;
int n;
int x[maxn], par[maxn], h[maxn];
int inf = 1e9 + 7, res = 0, ans = inf;
vector <int> adj[maxn];
inline void bfs(int v){
for(int i = 0; i < n; i ++){
h[i] = inf;
x[i] = 1;
par[i] = -1;
}
vector <int> vec;
queue <int> q;
q.push(v);
h[v] = 0;
while(q.size()){
int w = q.front();
q.pop();
vec.pb(w);
for(int u : adj[w]){
if(h[u] > h[w] + 1){
h[u] = h[w] + 1;
par[u] = w;
q.push(u);
}
}
}
reverse(vec.begin(), vec.end());
if((int)vec.size() < n){
res = inf;
}
for(int u : vec){
res += x[u];
if(par[u] != -1){
x[par[u]] += x[u];
}
if(h[u] >= inf){
res = inf;
}
}
return;
}
int main(){
fast_io;
scanf("%d", &n);
for(int i = 0; i < n; i ++){
int t;
scanf("%d", &t);
for(int j = 0; j < t; j ++){
int x;
scanf("%d", &x);
x --;
adj[x].pb(i);
}
}
for(int i = 0; i < n; i ++){
res = 0;
bfs(i);
ans = min(ans, res);
}
printf("%d", 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... |