302246: CF432B. Football Kit

Memory Limit:256 MB Time Limit:1 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Football Kit

题意翻译

有$n$支球队(比赛$n(n+1)$场),每支球队都有自己的主队服和客队服,编号分别为$x_i$和$y_i$。当其中两队比赛时客队和主队队服相同视为一次冲突,客队就会换成自己主队的队服。按顺序输出每个队伍主队服穿了几次,客队服穿了几次。

题目描述

Consider a football tournament where $ n $ teams participate. Each team has two football kits: for home games, and for away games. The kit for home games of the $ i $ -th team has color $ x_{i} $ and the kit for away games of this team has color $ y_{i} $ $ (x_{i}≠y_{i}) $ . In the tournament, each team plays exactly one home game and exactly one away game with each other team ( $ n(n-1) $ games in total). The team, that plays the home game, traditionally plays in its home kit. The team that plays an away game plays in its away kit. However, if two teams has the kits of the same color, they cannot be distinguished. In this case the away team plays in its home kit. Calculate how many games in the described tournament each team plays in its home kit and how many games it plays in its away kit.

输入输出格式

输入格式


The first line contains a single integer $ n $ $ (2<=n<=10^{5}) $ — the number of teams. Next $ n $ lines contain the description of the teams. The $ i $ -th line contains two space-separated numbers $ x_{i} $ , $ y_{i} $ $ (1<=x_{i},y_{i}<=10^{5}; x_{i}≠y_{i}) $ — the color numbers for the home and away kits of the $ i $ -th team.

输出格式


For each team, print on a single line two space-separated integers — the number of games this team is going to play in home and away kits, correspondingly. Print the answers for the teams in the order they appeared in the input.

输入输出样例

输入样例 #1

2
1 2
2 1

输出样例 #1

2 0
2 0

输入样例 #2

3
1 2
2 1
1 3

输出样例 #2

3 1
4 0
2 2

Input

题意翻译

有 $n$ 支球队(比赛 $n(n-1)$ 场),每支球队都有自己的主队服和客队服,编号分别为 $x_i$ 和 $y_i$。 当其中两队比赛时客队和主队队服相同视为一次冲突,客队就会换成自己主队的队服。 按顺序输出每个队伍主队服穿了几次,客队服穿了几次。

加入题单

算法标签: