CF268A.Games

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Manao works on a sports TV. He's spent much time watching the football games of some country. After a while he began to notice different patterns. For example, each team has two sets of uniforms: home uniform and guest uniform. When a team plays a game at home, the players put on the home uniform. When a team plays as a guest on somebody else's stadium, the players put on the guest uniform. The only exception to that rule is: when the home uniform color of the host team matches the guests' uniform, the host team puts on its guest uniform as well. For each team the color of the home and guest uniform is different.

There are nn teams taking part in the national championship. The championship consists of n(n1)n·(n-1) games: each team invites each other team to its stadium. At this point Manao wondered: how many times during the championship is a host team going to put on the guest uniform? Note that the order of the games does not affect this number.

You know the colors of the home and guest uniform for each team. For simplicity, the colors are numbered by integers in such a way that no two distinct colors have the same number. Help Manao find the answer to his question.

输入格式

The first line contains an integer nn ( 2<=n<=302<=n<=30 ). Each of the following nn lines contains a pair of distinct space-separated integers hih_{i} , aia_{i} ( 1<=hi,ai<=1001<=h_{i},a_{i}<=100 ) — the colors of the ii -th team's home and guest uniforms, respectively.

输出格式

In a single line print the number of games where the host team is going to play in the guest uniform.

输入输出样例

  • 输入#1

    3
    1 2
    2 4
    3 4
    

    输出#1

    1
    
  • 输入#2

    4
    100 42
    42 100
    5 42
    100 5
    

    输出#2

    5
    
  • 输入#3

    2
    1 2
    1 2
    

    输出#3

    0
    

说明/提示

In the first test case the championship consists of 6 games. The only game with the event in question is the game between teams 2 and 1 on the stadium of team 2.

In the second test sample the host team will have to wear guest uniform in the games between teams: 1 and 2, 2 and 1, 2 and 3, 3 and 4, 4 and 2 (the host team is written first).

首页