CF1218A.BubbleReactor

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

You are in charge of the BubbleReactor. It consists of NN BubbleCores connected with NN lines of electrical wiring. Each electrical wiring connects two distinct BubbleCores. There are no BubbleCores connected with more than one line of electrical wiring.

Your task is to start the BubbleReactor by starting each BubbleCore. In order for a BubbleCore to be started it needs to be receiving power from a directly connected BubbleCore which is already started. However, you can kick-start one BubbleCore manually without needing power. It is guaranteed that all BubbleCores can be started.

Before the BubbleCore boot up procedure its potential is calculated as the number of BubbleCores it can power on (the number of inactive BubbleCores which are connected to it directly or with any number of inactive BubbleCores in between, itself included)

Start the BubbleReactor so that the sum of all BubbleCores' potentials is maximum.

输入格式

First line contains one integer N(3N15.000)N (3 \leq N \leq 15.000) , the number of BubbleCores.

The following N lines contain two integers U,V(0UV<N)U, V (0 \leq U \neq V < N) denoting that there exists electrical wiring between BubbleCores UU and VV .

输出格式

Single integer, the maximum sum of all BubbleCores' potentials.

输入输出样例

  • 输入#1

    10
    0 1
    0 3
    0 4
    0 9
    1 2
    2 3
    2 7
    4 5
    4 6
    7 8
    

    输出#1

    51
    

说明/提示

If we start by kickstarting BubbleCup 8 and then turning on cores 7, 2, 1, 3, 0, 9, 4, 5, 6 in that order we get potentials 10 + 9 + 8 + 7 + 6 + 5 + 1 + 3 + 1 + 1 = 51

首页