Submission #519997

# Submission time Handle Problem Language Result Execution time Memory
519997 2022-01-28T04:36:59 Z vinnipuh01 Bosses (BOI16_bosses) C++17
0 / 100
1 ms 1484 KB
#include <iostream>
#include <bits/stdc++.h>
#include <cmath>
#include <algorithm>
#include <vector>
#include <deque>
#include <set>
#include <stack>
#include <string>
#include <map>
#include <queue>
#define int long long

using namespace std;

const long long oo = 1000000000000000000;

long long sum, ans = 0, mx = 0, mn = 1000000000, num, pos;


/*
    ViHHiPuh

   (( `'-""``""-'` ))
     )-__-_.._-__-(
   / --- (o _ o) --- \
   \ .-* ( .0. ) *-. /
   _'-. ,_ '=' _, .-'_
  / `;#'#'# - #'#'#;` \
 \_)) -----'#'----- ((_/
      # --------- #
  '# ------- ------ #'
  /..-'# ------- #'-.\
  _\...-\'# -- #'/-.../_
  ((____)- '#' -(____))


    cout << fixed << setprecision(6) << x;


    freopen ( "sum.in", "r", stdin )
*/

int n, m, x;
vector <int> v[ 50001 ];
bool used[ 5001 ];
int col[ 5001 ];

void dfs( int u ) {
	used[ u ] = 1;
	sum ++;
	for ( auto to : v[ u ] ) {
		if ( !used[ to ] ) {
			dfs( to );
			col[ u ] += col[ to ];
		}
	}
	col[ u ] ++;
	ans += col[ u ];
}

main () {
    ios_base::sync_with_stdio(0);
    cin.tie(0); cout.tie(0);
	cin >> n;
	for ( int i = 1; i <= n; i ++ ) {
		cin >> m;
		for ( int j = 1; j <= m; j ++ ) {
			cin >> x;
			v[ x ].push_back( i );
		}
	}
	for ( int i = 1; i <= n; i ++ ) {
		dfs( i );
		if ( sum == n )
			mn = min( mn, ans );
		ans = sum = 0;
		for ( int j = 1; j <= n; j ++ ) {
			used[ j ] = col[ j ] = 0;
		}
	}
	cout << mn;
}

/*



*/

Compilation message

bosses.cpp:62:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   62 | main () {
      | ^~~~
bosses.cpp: In function 'int main()':
bosses.cpp:79:25: warning: suggest parentheses around assignment used as truth value [-Wparentheses]
   79 |    used[ j ] = col[ j ] = 0;
      |                ~~~~~~~~~^~~
# Verdict Execution time Memory Grader output
1 Correct 1 ms 1484 KB Output is correct
2 Incorrect 1 ms 1484 KB Output isn't correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 1484 KB Output is correct
2 Incorrect 1 ms 1484 KB Output isn't correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 1484 KB Output is correct
2 Incorrect 1 ms 1484 KB Output isn't correct
3 Halted 0 ms 0 KB -