# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
36401 | DoanPhuDuc | Bosses (BOI16_bosses) | C++98 | 1500 ms | 2692 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define FOR(x, a, b) for (int x = a; x <= b; ++x)
#define FOD(x, a, b) for (int x = a; x >= b; --x)
#define REP(x, a, b) for (int x = a; x < b; ++x)
#define DEBUG(X) { cout << #X << " = " << X << endl; }
#define PR(A, n) { cout << #A << " = "; FOR(_, 1, n) cout << A[_] << " "; cout << endl; }
#define PR0(A, n) { cout << #A << " = "; REP(_, 0, n) cout << A[_] << " "; cout << endl; }
using namespace std;
typedef long long LL;
typedef pair <int, int> II;
const int N = 5e3 + 10;
const int INF = 0x3f3f3f3f;
int n;
int f[N], p[N];
bool ban[N];
vector <int> boss[N], adj[N];
void DFS(int u) {
f[u] = 1;
REP(k, 0, adj[u].size()) {
int v = adj[u][k];
DFS(v);
f[u] += f[v];
}
}
queue <int> Q;
int Compute(int u) {
FOR(i, 1, n) {
adj[i].clear();
p[i] = -1;
}
p[u] = 0;
Q.push(u);
while (Q.size()) {
int u = Q.front(); Q.pop();
REP(k, 0, boss[u].size()) {
int v = boss[u][k];
if (p[v] == -1) {
adj[u].push_back(v);
p[v] = u;
Q.push(v);
}
}
}
int num = 0;
FOR(i, 1, n) num += (p[i] != -1);
if (num == n) {
DFS(u);
int ans = 0;
FOR(i, 1, n) ans += f[i];
return ans;
} else return INF;
}
int main() {
#ifdef LOCAL
freopen("input.txt", "r", stdin);
freopen("output.txt", "w", stdout);
#endif // LOCAL
scanf("%d", &n);
FOR(i, 1, n) {
int m; scanf("%d", &m);
FOR(j, 1, m) {
int x; scanf("%d", &x);
boss[x].push_back(i);
}
}
int ans = INF;
FOR(i, 1, n) ans = min(ans, Compute(i));
printf("%d\n", 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... |