# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
442227 | aryan12 | Bosses (BOI16_bosses) | C++17 | 6 ms | 572 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define int long long
mt19937_64 RNG(chrono::steady_clock::now().time_since_epoch().count());
const int N = 5010;
vector<int> g[N];
void Solve() {
int n;
cin >> n;
for(int i = 1; i <= n; i++) {
int len;
cin >> len;
for(int j = 0; j < len; j++) {
int x;
cin >> x;
g[x].push_back(i);
}
}
int ans = INT_MAX;
for(int root = 1; root <= n; root++) {
int par[n + 1], inedge[n + 1];
bool vis[n + 1];
for(int i = 0; i <= n; i++) {
par[i] = -1;
inedge[i] = 0;
vis[i] = false;
}
queue<int> q;
q.push(root);
vis[root] = true;
int cnt = 1;
while(!q.empty()) {
int node = q.front();
q.pop();
for(int i = 0; i < g[node].size(); i++) {
if(vis[g[node][i]]) {
continue;
}
vis[g[node][i]] = true;
cnt++;
q.push(g[node][i]);
par[g[node][i]] = node;
inedge[node]++;
}
}
if(cnt != n) {
continue;
}
int totalAns[n + 1];
for(int i = 1; i <= n; i++) {
totalAns[i] = 1;
if(inedge[i] == 0) {
q.push(i);
}
}
int curans = 0;
while(!q.empty()) {
int node = q.front();
curans += totalAns[node];
q.pop();
inedge[par[node]]--;
if(inedge[par[node]] == 0) {
q.push(par[node]);
}
totalAns[par[node]] += totalAns[node];
}
ans = min(ans, curans);
}
cout << ans << "\n";
}
int32_t main() {
auto begin = std::chrono::high_resolution_clock::now();
ios_base::sync_with_stdio(0);
cin.tie(0);
int t = 1;
//cin >> t;
while(t--) {
Solve();
}
auto end = std::chrono::high_resolution_clock::now();
auto elapsed = std::chrono::duration_cast<std::chrono::nanoseconds>(end - begin);
cerr << "Time measured: " << elapsed.count() * 1e-9 << " seconds.\n";
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... |