A1481.[COCI-2012_2013-contest3]#3 MALCOLM
普及/提高-
通过率:0%
时间限制:1.00s
内存限制:128MB
题目描述
Since teacher Herkabe has started ranking his N students, the number of friendships in his class has sharply fallen. The students near the bottom of the rankings list have become jealous of the top students, while the top students started looking down on their less successful colleagues.
According to Malcolm's observations, the following rule holds: two students are friends if their ranks are close enough, more precisely, if they differ by at most K. For example, if K = 1, then only neighbouring students on the rankings list are friends. Furthermore, two students are good friends if they are friends and their names have the same length.
Write a program to calculate the number of pairs of good friends in this gifted class.
输入格式
The first line of input contains two positive integers, N (3 ≤ N ≤ 300 000) and K (1 ≤ K ≤ N), from the problem statement.
Each of the following N lines contains a single student's name. The names are given in the order they appear on the rankings list. They consist of between 2 and 20 (inclusive) uppercase English letters.
输出格式
The first and only line of output must contain the required number of pairs.
输入输出样例
输入#1
4 2 IVA IVO ANA TOM
输出#1
5
输入#2
6 3 CYNTHIA LLOYD STEVIE KEVIN MALCOLM DABNEY
输出#2
2