문제
Pareidolia is the phenomenon where your eyes tend to see familiar patterns in images where none really exist -- for example seeing a face in a cloud. As you might imagine, with Farmer John's constant proximity to cows, he often sees cow-related patterns in everyday objects. For example, if he looks at the string "bqessiyexbesszieb", Farmer John's eyes ignore some of the letters and all he sees is "bessiexbessieb" -- a string that has contains two contiguous substrings equal to "bessie".
Given a string of length at most consisting only of characters a-z, where each character has an associated deletion cost, compute the maximum number of contiguous substrings that equal "bessie" you can form by deleting zero or more characters from it, and the minimum total cost of the characters you need to delete in order to do this.
입력
The first line contains the string. The second line contains the deletion cost associated with each character (an integer in the range ).
출력
The maximum number of occurrences, and the minimum cost to produce this number of occurrences.
예제 입력 1
besssie
1 1 5 4 6 1 1
예제 출력 1
1
4
예제 입력 2
bebesconsiete
6 5 2 3 6 5 7 9 8 1 4 5 1
예제 출력 2
1
21
예제 입력 3
besgiraffesiebessibessie
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
예제 출력 3
2
7
점수
Inputs 4-5: Inputs 6-8: All costs are Inputs 9-17: No additional constraints.
코드를 제출하려면 로그인이 필요합니다.
로그인