CF1287B.Hyperset

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Bees Alice and Alesya gave beekeeper Polina famous card game "Set" as a Christmas present. The deck consists of cards that vary in four features across three options for each kind of feature: number of shapes, shape, shading, and color. In this game, some combinations of three cards are said to make up a set. For every feature — color, number, shape, and shading — the three cards must display that feature as either all the same, or pairwise different. The picture below shows how sets look.

Polina came up with a new game called "Hyperset". In her game, there are nn cards with kk features, each feature has three possible values: "S", "E", or "T". The original "Set" game can be viewed as "Hyperset" with k=4k = 4 .

Similarly to the original game, three cards form a set, if all features are the same for all cards or are pairwise different. The goal of the game is to compute the number of ways to choose three cards that form a set.

Unfortunately, winter holidays have come to an end, and it's time for Polina to go to school. Help Polina find the number of sets among the cards lying on the table.

输入格式

The first line of each test contains two integers nn and kk ( 1n15001 \le n \le 1500 , 1k301 \le k \le 30 ) — number of cards and number of features.

Each of the following nn lines contains a card description: a string consisting of kk letters "S", "E", "T". The ii -th character of this string decribes the ii -th feature of that card. All cards are distinct.

输出格式

Output a single integer — the number of ways to choose three cards that form a set.

输入输出样例

  • 输入#1

    3 3
    SET
    ETS
    TSE

    输出#1

    1
  • 输入#2

    3 4
    SETE
    ETSE
    TSES

    输出#2

    0
  • 输入#3

    5 4
    SETT
    TEST
    EEET
    ESTE
    STES

    输出#3

    2

说明/提示

In the third example test, these two triples of cards are sets:

  1. "SETT", "TEST", "EEET"
  2. "TEST", "ESTE", "STES"
首页