CF131B.Opposites Attract

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Everybody knows that opposites attract. That is the key principle of the "Perfect Matching" dating agency. The "Perfect Matching" matchmakers have classified each registered customer by his interests and assigned to the ii -th client number tit_{i} ( 10<=ti<=10-10<=t_{i}<=10 ). Of course, one number can be assigned to any number of customers.

"Perfect Matching" wants to advertise its services and publish the number of opposite couples, that is, the couples who have opposite values of tt . Each couple consists of exactly two clients. The customer can be included in a couple an arbitrary number of times. Help the agency and write the program that will find the sought number by the given sequence t1,t2,...,tnt_{1},t_{2},...,t_{n} . For example, if t=(1,1,1,1)t=(1,-1,1,-1) , then any two elements tit_{i} and tjt_{j} form a couple if ii and jj have different parity. Consequently, in this case the sought number equals 4.

Of course, a client can't form a couple with him/herself.

输入格式

The first line of the input data contains an integer nn ( 1<=n<=1051<=n<=10^{5} ) which represents the number of registered clients of the "Couple Matching". The second line contains a sequence of integers t1,t2,...,tnt_{1},t_{2},...,t_{n} ( 10<=ti<=10-10<=t_{i}<=10 ), tit_{i} — is the parameter of the ii -th customer that has been assigned to the customer by the result of the analysis of his interests.

输出格式

Print the number of couples of customs with opposite tt . The opposite number for xx is number x-x ( 00 is opposite to itself). Couples that only differ in the clients' order are considered the same.

Note that the answer to the problem can be large enough, so you must use the 64-bit integer type for calculations. Please, do not use the %lld specificator to read or write 64-bit integers in С++. It is preferred to use cin, cout streams or the %I64d specificator.

输入输出样例

  • 输入#1

    5
    -3 3 0 0 3
    

    输出#1

    3
    
  • 输入#2

    3
    0 0 0
    

    输出#2

    3
    

说明/提示

In the first sample the couples of opposite clients are: (1,2), (1,5) и (3,4).

In the second sample any couple of clients is opposite.

首页