이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <queue>
#include <bitset>
#include <algorithm>
using namespace std;
int n;
vector<int> adj[5005], order, par, sz;
queue<int> bfs;
bitset<5005> vis;
int main(){
ios_base::sync_with_stdio(0);
cin.tie(0); cout.tie(0);
cin >> n;
for(int sz, i = 1; i <= n; i ++){
cin >> sz;
for(int p, j = 1; j <= sz; j ++){
cin >> p;
adj[p].push_back(i);
}
}
par.resize(n + 1);
int ans = 1e9 + 69;
for(int i = 1; i <= n; i ++){ //let i be the boss
vis = 0; order.clear();
bfs.push(i); vis[i] = 1;
for(; !bfs.empty(); bfs.pop()){
int nw = bfs.front();
order.push_back(nw);
for(int nx : adj[nw]) if(!vis[nx]){
vis[nx] = 1; bfs.push(nx);
par[nx] = nw;
}
}
if(order.size() != n) continue;
reverse(order.begin(), order.end());
int tmp = 0;
sz.assign(n + 1, 0);
for(int nw : order){
sz[nw] ++; tmp += sz[nw];
if(nw != i)
sz[par[nw]] += sz[nw];
}
ans = min(ans, tmp);
}
cout << ans << endl;
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
bosses.cpp: In function 'int main()':
bosses.cpp:40:19: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
if(order.size() != n) continue;
~~~~~~~~~~~~~^~~~
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |