最新文章专题视频专题问答1问答10问答100问答1000问答2000关键字专题1关键字专题50关键字专题500关键字专题1500TAG最新视频文章推荐1 推荐3 推荐5 推荐7 推荐9 推荐11 推荐13 推荐15 推荐17 推荐19 推荐21 推荐23 推荐25 推荐27 推荐29 推荐31 推荐33 推荐35 推荐37视频文章20视频文章30视频文章40视频文章50视频文章60 视频文章70视频文章80视频文章90视频文章100视频文章120视频文章140 视频2关键字专题关键字专题tag2tag3文章专题文章专题2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章专题3
当前位置: 首页 - 科技 - 知识百科 - 正文

CODEFORCE246Div.2B题_html/css

来源:动视网 责编:小采 时间:2020-11-27 15:53:14
文档

CODEFORCE246Div.2B题_html/css

CODEFORCE246Div.2B题_html/css_WEB-ITnose:题目如下: B. Football Kit time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output Consider a football tour
推荐度:
导读CODEFORCE246Div.2B题_html/css_WEB-ITnose:题目如下: B. Football Kit time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output Consider a football tour


题目如下:

B. Football Kit

time limit per test

1 second

memory limit per test

256 megabytes

input

standard input

output

standard output

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 xi and the kit for away games of this team has color yi (xi?≠?yi).

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.

Input

The first line contains a single integer n (2?≤?n?≤?105) ? the number of teams. Next n lines contain the description of the teams. The i-th line contains two space-separated numbers xi, yi (1?≤?xi,?yi?≤?105; xi?≠?yi) ? the color numbers for the home and away kits of the i-th team.

Output

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.

Sample test(s)

Input

21 22 1

Output

2 02 0

Input

31 22 11 3

Output

3 14 02 2

刚开始用双重循环查找超时了,最后改为二分查找AC。

代码如下:

文档

CODEFORCE246Div.2B题_html/css

CODEFORCE246Div.2B题_html/css_WEB-ITnose:题目如下: B. Football Kit time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output Consider a football tour
推荐度:
标签: it html css
  • 热门焦点

最新推荐

猜你喜欢

热门推荐

专题
Top