# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
338066 | theshadow_04 | Bosses (BOI16_bosses) | C++11 | 1558 ms | 3128 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
// V T An
#include <bits/stdc++.h>
#define Task "BOSSES"
#define pb push_back
#define F first
#define S second
using namespace std;
const int maxn = 50005;
int n;
vector<int> a[maxn], ke[maxn];
int dd[maxn];
int ans = 2e9, f[maxn];
queue<int> Q;
void BFS(int s) {
Q.push(s);
dd[s] = 1;
while(Q.size()) {
int u = Q.front();
Q.pop();
for(auto v : a[u]) {
if(!dd[v]) {
dd[v] = 1;
ke[u].pb(v);
Q.push(v);
}
}
}
}
void DFS(int u) {
int sum = 0;
for(auto v : ke[u]) {
if(!f[v]) {
DFS(v);
sum += f[v];
}
}
f[u] = sum + 1;
}
void Solve(int u) {
for(int i = 1; i <= n; ++ i) ke[i].clear(), f[i] = dd[i] = 0;
BFS(u);
DFS(u);
int total = 0;
for(int i = 1; i <= n; ++ i) {
if(!f[i]) return;
total += f[i];
}
ans = min(ans, total);
}
int main() {
ios_base::sync_with_stdio(0);
cin.tie(0), cout.tie(0);
if(fopen(Task".inp", "r")) {
freopen(Task".inp", "r", stdin);
freopen(Task".out", "w", stdout);
}
cin >> n;
for(int i = 1; i <= n; ++ i) {
int k; cin >> k;
while(k --) {
int x; cin >> x;
a[x].pb(i);
}
}
for(int i = 1; i <= n; ++ i) {
Solve(i);
}
cout << ans;
}
// CHY-AKAV
컴파일 시 표준 에러 (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... |