Subway

题意翻译

给出一个 $n$ 个点,$n$ 条边的无向无权图,图上每条边的长度为 $1$,保证图中有且仅由一个环。 你的任务是求出每一个点到环(环上任意一点)的最短路径长度。 ### 输入格式 第一行一个整数 $n$($3 \leq n \leq 3 \times 10^3$),表示点的个数和边的个数。 接下来 $n$ 行,每行两个整数 $u,v$,表示 $u,v$ 之间有一条边,$1 \le u,v \le n$。 ### 输出格式 一行 $n$ 个由空格隔开的整数,表示每个点到环的最短距离。

题目描述

A subway scheme, classic for all Berland cities is represented by a set of $ n $ stations connected by $ n $ passages, each of which connects exactly two stations and does not pass through any others. Besides, in the classic scheme one can get from any station to any other one along the passages. The passages can be used to move in both directions. Between each pair of stations there is no more than one passage. Berland mathematicians have recently proved a theorem that states that any classic scheme has a ringroad. There can be only one ringroad. In other words, in any classic scheme one can find the only scheme consisting of stations (where any two neighbouring ones are linked by a passage) and this cycle doesn't contain any station more than once. This invention had a powerful social impact as now the stations could be compared according to their distance from the ringroad. For example, a citizen could say "I live in three passages from the ringroad" and another one could reply "you loser, I live in one passage from the ringroad". The Internet soon got filled with applications that promised to count the distance from the station to the ringroad (send a text message to a short number...). The Berland government decided to put an end to these disturbances and start to control the situation. You are requested to write a program that can determine the remoteness from the ringroad for each station by the city subway scheme.

输入输出格式

输入格式


The first line contains an integer $ n $ ( $ 3<=n<=3000 $ ), $ n $ is the number of stations (and trains at the same time) in the subway scheme. Then $ n $ lines contain descriptions of the trains, one per line. Each line contains a pair of integers $ x_{i},y_{i} $ ( $ 1<=x_{i},y_{i}<=n $ ) and represents the presence of a passage from station $ x_{i} $ to station $ y_{i} $ . The stations are numbered from 1 to $ n $ in an arbitrary order. It is guaranteed that $ x_{i}≠y_{i} $ and that no pair of stations contain more than one passage. The passages can be used to travel both ways. It is guaranteed that the given description represents a classic subway scheme.

输出格式


Print $ n $ numbers. Separate the numbers by spaces, the $ i $ -th one should be equal to the distance of the $ i $ -th station from the ringroad. For the ringroad stations print number 0.

输入输出样例

输入样例 #1

4
1 3
4 3
4 2
1 2

输出样例 #1

0 0 0 0 

输入样例 #2

6
1 2
3 4
6 4
2 3
1 3
3 5

输出样例 #2

0 0 0 1 1 2