博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CodeForces 432B Football Kit
阅读量:5997 次
发布时间:2019-06-20

本文共 2206 字,大约阅读时间需要 7 分钟。

 Football Kit
Time Limit:1000MS     Memory Limit:262144KB     64bit IO Format:%I64d & %I64u
Submit     

Description

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 xiyi(1 ≤ xi, yi ≤ 105xi ≠ 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 Input

Input
2 1 2 2 1
Output
2 0 2 0
Input
3 1 2 2 1 1 3
Output
3 1 4 0 2 2
1 #include 
2 #include
3 #include
4 using namespace std; 5 map
s; 6 int main() 7 { 8 int n; 9 int i,j,x[100005],y[100005],nn[100005];10 while(scanf("%d",&n)!=EOF)11 {12 s.clear();13 for(i=1;i<=n;i++)14 {15 scanf("%d %d",&x[i],&y[i]);16 s[x[i]]++;17 nn[i]=n-1;18 }19 20 for(i=1;i<=n;i++)21 {22 nn[i]=nn[i]+s[y[i]];23 }24 for(i=1;i<=n;i++)25 printf("%d %d\n",nn[i],2*n-2-nn[i]);26 }27 return 0;28 }
View Code

 

转载于:https://www.cnblogs.com/cyd308/p/4771503.html

你可能感兴趣的文章
DataTable 的用法简介
查看>>
步步为营 .NET 代码重构学习笔记系列总结
查看>>
BROKER服务器同客户端和应用服务器三者之间传递消息的格式定义
查看>>
【转】20个Cydia常见错误问题解决方法汇总
查看>>
datagrid在MVC中的运用10-勾选
查看>>
使用jQuery和Bootstrap实现多层、自适应模态窗口
查看>>
C#中如何选择使用T[]或List<T>
查看>>
对象不支持此属性或方法
查看>>
门外汉的IT
查看>>
SerialPort使用
查看>>
为你的Web程序加个启动画面
查看>>
实用技巧:使用 jQuery 异步加载 JavaScript 脚本
查看>>
ssl,proxy;部分http部分https;80,443,8080;nginx+tomcat;
查看>>
C#实现万年历(农历、节气、节日、星座、属相、生肖、闰年等)
查看>>
OSI七层模型具体解释
查看>>
Android 弹出框Dialog并缩放图片
查看>>
算法系列15天速成——第六天 五大经典查找【下】
查看>>
TextView settextcolor 无效解决方案
查看>>
kendoui仪表板和直方图 演示样本
查看>>
[转载] 关于matlab GUI的一点心得
查看>>