CF1082F.Speed Dial

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Polycarp's phone book contains nn phone numbers, each of them is described by sis_i — the number itself and mim_i — the number of times Polycarp dials it in daily.

Polycarp has just bought a brand new phone with an amazing speed dial feature! More precisely, kk buttons on it can have a number assigned to it (not necessary from the phone book). To enter some number Polycarp can press one of these kk buttons and then finish the number using usual digit buttons (entering a number with only digit buttons is also possible).

Speed dial button can only be used when no digits are entered. No button can have its number reassigned.

What is the minimal total number of digit number presses Polycarp can achieve after he assigns numbers to speed dial buttons and enters each of the numbers from his phone book the given number of times in an optimal way?

输入格式

The first line contains two integers nn and kk ( 1n5001 \le n \le 500 , 1k101 \le k \le 10 ) — the amount of numbers in Polycarp's phone book and the number of speed dial buttons his new phone has.

The ii -th of the next nn lines contain a string sis_i and an integer mim_i (1mi500)(1 \le m_i \le 500) , where sis_i is a non-empty string of digits from 00 to 99 inclusive (the ii -th number), and mim_i is the amount of times it will be dialed, respectively.

It is guaranteed that the total length of all phone numbers will not exceed 500500 .

输出格式

Print a single integer — the minimal total number of digit number presses Polycarp can achieve after he assigns numbers to speed dial buttons and enters each of the numbers from his phone book the given number of times in an optimal way.

输入输出样例

  • 输入#1

    3 1
    0001 5
    001 4
    01 1
    

    输出#1

    14
    
  • 输入#2

    3 1
    0001 5
    001 6
    01 1
    

    输出#2

    18
    

说明/提示

The only speed dial button in the first example should have "0001" on it. The total number of digit button presses will be 050 \cdot 5 for the first number + 343 \cdot 4 for the second + 212 \cdot 1 for the third. 1414 in total.

The only speed dial button in the second example should have "00" on it. The total number of digit button presses will be 252 \cdot 5 for the first number + 161 \cdot 6 for the second + 212 \cdot 1 for the third. 1818 in total.

首页