# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
33840 | sinhriv | Bosses (BOI16_bosses) | C++14 | 1253 ms | 2468 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int N = 5050;
int n;
int f[N];
int lst[N];
long long salary[N];
vector < int > gra[N];
vector < pair < int, int > > adj[N];
int main(){
if(fopen("1.inp", "r")){
freopen("1.inp", "r", stdin);
}
scanf("%d", &n);
for(int i = 1; i <= n; ++i){
int m;
scanf("%d", &m);
for(int j = 1; j <= m; ++j){
int x;
scanf("%d", &x);
adj[x].emplace_back(i, 0);
}
}
long long ans = 1e18;
for(int root = 1; root <= n; ++root){
memset(f, 0, sizeof f);
memset(salary, 0, sizeof salary);
for(int i = 1; i <= n; ++i){
for(auto &p : adj[i]){
p.second = 0;
}
}
queue < int > bfs;
bfs.push(root);
f[root] = 1;
int sz = 0;
while(!bfs.empty()){
int x = bfs.front();
bfs.pop();
lst[++sz] = x;
for(auto &p : adj[x]){
if(f[p.first] == 0){
f[p.first] = 1;
p.second = 1;
bfs.push(p.first);
}
}
}
if(sz != n) continue;
long long ret = 0;
for(int i = sz; i >= 1; --i){
int tot = 0;
for(auto p : adj[lst[i]]){
if(p.second) tot += salary[p.first];
}
salary[lst[i]] = tot + 1;
ret += salary[lst[i]];
}
ans = min(ans, ret);
}
cout << 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... |