codeforces-432B Football Kit

codeforces-432B Football Kit

                        time limit per test1 second  memory limit per test256 megabytes

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.

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

题目大意:有A,B两支球队,分别有主队服和客队服。当客队和主队队服相同时认为冲突,客队换成自己主队的队服。求每个队伍主队服穿了几次,客队服穿了几次。

题目思路:求出冲突次数。

题目链接:cf 432B

以下是代码:

#include <vector>
#include <map>
#include <set>
#include <algorithm>
#include <iostream>
#include <cstdio>
#include <cmath>
#include <cstdlib>
#include <string>
#include <cstring>
using namespace std;

int main(){
    int n;
    cin >> n;
    int a[100100] = {0},b[100100] = {0},c[100100] = {0};
    for (int i = 0; i < n; i++)
    {
        cin >> a[i] >> b[i];           //a[i] 代表主队服,b[i] 代表客队服
            c[a[i]]++;                //记录该种主队服出现的次数
    }
    for (int i = 0; i < n; i++)
    {
        cout << n - 1 + c[b[i]] << " " << n - 1 - c[b[i]]<< endl;    //c[b[i]]则表示冲突次数
    }
    return 0;
}

你可能感兴趣的:(水题)