# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
695205 | Mr_Ph | Bosses (BOI16_bosses) | C++14 | 834 ms | 740 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
///Never gonna give you up.
#include<bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
typedef long long ll;
typedef long long int lli;
typedef unsigned long long ull;
using namespace std;
using namespace __gnu_pbds;
template<class x>
using ordered_set = tree<x, null_type,less<x>, rb_tree_tag,tree_order_statistics_node_update>;
const ll mod=(ll)1e9+7;
const ll mod1=998244353;
///the defines :)
#define endl '\n'
#define vi vector<int>
#define vll vector<ll>
#define ent(arr) for(int i=0;i<arr.size();i++)cin>>arr[i];
#define all(arr) arr.begin(),arr.end()
#define allr(arr) arr.rbegin(),arr.rend()
#define sz size()
///the end of the defines ;)
void bla()
{
#ifndef ONLINE_JUDGE
freopen("input.txt","r",stdin);
freopen("notsus.txt","w",stdout);
#endif
}
int n;
vector<vector<int>>padj;
vector<vector<int>>adj;
vector<int>val;
bool valid=false;
void build(int node)
{
for(int i=1;i<=n;i++)val[i]=1;
vector<int>mp(n+1);
queue<int>q;
q.push(node);
while(q.sz)
{
mp[q.front()]++;
for(auto i:padj[q.front()])
{
if(!mp[i])
{
val[i]=val[q.front()]+1;
mp[i]++;
q.push(i);
}
}
q.pop();
}
for(int i=1;i<=n;i++)
if(!mp[i])valid=true;
}
int hello=0;
void preprocess(){}
void solve()
{
cin>>n;
padj.resize(n+1);
adj.resize(n+1);
val.resize(n+1);
for(int i=0;i<n;i++)
{
int x;
cin>>x;
for(int j=0;j<x;j++)
{
int a;
cin>>a;
padj[a].push_back(i+1);
}
}
int ans=INT_MAX;
for(int i=1;i<=n;i++)
{
valid=false;
build(i);
if(valid)continue;
hello=0;
// dfs(i);
for(int j=1;j<=n;j++)hello+=val[j];
ans=min(ans,hello);
}
cout<<ans<<endl;
}
int32_t main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
preprocess();
// bla();
int t=1;
//cin>>t;
while(t--)
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... |