CF1082F.Speed Dial
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Polycarp's phone book contains n phone numbers, each of them is described by si — the number itself and mi — 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, k 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 k 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 n and k ( 1≤n≤500 , 1≤k≤10 ) — the amount of numbers in Polycarp's phone book and the number of speed dial buttons his new phone has.
The i -th of the next n lines contain a string si and an integer mi (1≤mi≤500) , where si is a non-empty string of digits from 0 to 9 inclusive (the i -th number), and mi is the amount of times it will be dialed, respectively.
It is guaranteed that the total length of all phone numbers will not exceed 500 .
输出格式
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 0⋅5 for the first number + 3⋅4 for the second + 2⋅1 for the third. 14 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 2⋅5 for the first number + 1⋅6 for the second + 2⋅1 for the third. 18 in total.