# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
725560 | Bogdan1110 | Bosses (BOI16_bosses) | C++14 | 1060 ms | 1012 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define FAST {ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);}
#define FILES {freopen("input.txt", "r", stdin);freopen("output.txt", "w", stdout);}
#define ll long long
#define ull unsigned long long
#define pqueue priority_queue
#define pb push_back
#define fi first
#define se second
#define ld long double
#define pii pair<int,int>
#define pll pair<long long,long long>
#define all(a) (a).begin(), (a).end()
#define mp make_pair
using namespace std;
// order_of_key -> # less than k
// find_by_order -> k-th element
// pq max element
void files() {
#ifndef ONLINE_JUDGE
freopen("input.txt", "r", stdin);
freopen("output.txt", "w", stdout);
#endif
}
const double eps = 0.00000001;
const int NMAX = 5050;
const ll inf = LLONG_MAX/3;
const ll modi = 998244353;
vector<int>al[NMAX];
vector<int>al1[NMAX];
int visited[NMAX];
ll res = 0;
int n;
void fun(int node){
queue<pii> q;
q.push({node,0});
vector<int>ord;
while(!q.empty()){
int nd = q.front().fi;
int pret = q.front().se;
q.pop();
if ( visited[nd] ) {
continue;
}
ord.pb(nd);
al1[pret].pb(nd);
visited[nd] = 1;
for (auto u : al[nd]) {
q.push({u,nd});
}
}
reverse(all(ord));
for (auto nd : ord){
for (auto u : al1[nd]) {
visited[nd]+= visited[u];
}
res += visited[nd];
}
for (int i = 0 ; i <= n ; i++ ) {
al1[i].clear();
}
}
void solve() {
cin >> n;
for (int i = 1 ; i <= n ; i++ ) {
int k;
cin >> k;
for (int j = 0 ; j < k ; j++ ) {
int a;
cin >> a;
al[a].pb(i);
}
}
ll ans = LLONG_MAX;
for (int i = 1 ; i <= n ; i++ ) {
memset(visited,0,sizeof(visited));
res = 0;
fun(i);
for (int j = 1 ; j <= n ; j++ ){
if ( visited[j] == 0 ) res = LLONG_MAX;
}
ans = min(ans,res);
}
cout << ans << endl;
}
int main () {
FAST
int t=1;
/*
cin >> t;
//*/
int i = 1;
while(t--) {
//cout << "Case #" << i++ << ": " ;
solve();
}
}
컴파일 시 표준 에러 (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... |