CF1166A.Silent Classroom

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

There are nn students in the first grade of Nlogonia high school. The principal wishes to split the students into two classrooms (each student must be in exactly one of the classrooms). Two distinct students whose name starts with the same letter will be chatty if they are put in the same classroom (because they must have a lot in common). Let xx be the number of such pairs of students in a split. Pairs (a,b)(a, b) and (b,a)(b, a) are the same and counted only once.

For example, if there are 66 students: "olivia", "jacob", "tanya", "jack", "oliver" and "jessica", then:

  • splitting into two classrooms ("jack", "jacob", "jessica", "tanya") and ("olivia", "oliver") will give x=4x=4 ( 33 chatting pairs in the first classroom, 11 chatting pair in the second classroom),
  • splitting into two classrooms ("jack", "tanya", "olivia") and ("jessica", "oliver", "jacob") will give x=1x=1 ( 00 chatting pairs in the first classroom, 11 chatting pair in the second classroom).

You are given the list of the nn names. What is the minimum xx we can obtain by splitting the students into classrooms?

Note that it is valid to place all of the students in one of the classrooms, leaving the other one empty.

输入格式

The first line contains a single integer nn ( 1n1001\leq n \leq 100 ) — the number of students.

After this nn lines follow.

The ii -th line contains the name of the ii -th student.

It is guaranteed each name is a string of lowercase English letters of length at most 2020 . Note that multiple students may share the same name.

输出格式

The output must consist of a single integer xx — the minimum possible number of chatty pairs.

输入输出样例

  • 输入#1

    4
    jorge
    jose
    oscar
    jerry
    

    输出#1

    1
    
  • 输入#2

    7
    kambei
    gorobei
    shichiroji
    kyuzo
    heihachi
    katsushiro
    kikuchiyo
    

    输出#2

    2
    
  • 输入#3

    5
    mike
    mike
    mike
    mike
    mike
    

    输出#3

    4
    

说明/提示

In the first sample the minimum number of pairs is 11 . This can be achieved, for example, by putting everyone except jose in one classroom, and jose in the other, so jorge and jerry form the only chatty pair.

In the second sample the minimum number of pairs is 22 . This can be achieved, for example, by putting kambei, gorobei, shichiroji and kyuzo in one room and putting heihachi, katsushiro and kikuchiyo in the other room. In this case the two pairs are kambei and kyuzo, and katsushiro and kikuchiyo.

In the third sample the minimum number of pairs is 44 . This can be achieved by placing three of the students named mike in one classroom and the other two students in another classroom. Thus there will be three chatty pairs in one classroom and one chatty pair in the other classroom.

首页