GRE Words
Time Limit: 30000/15000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 4539 Accepted Submission(s): 446
Problem Description
Recently George is preparing for the Graduate Record Examinations (GRE for short). Obviously the most important thing is reciting the words.
Now George is working on a word list containing N words.
He has so poor a memory that it is too hard for him to remember all of the words on the list. But he does find a way to help him to remember. He finds that if a sequence of words has a property that for all pairs of neighboring words, the previous one is a substring of the next one, then the sequence of words is easy to remember.
So he decides to eliminate some words from the word list first to make the list easier for him. Meantime, he doesn’t want to miss the important words. He gives each word an importance, which is represented by an integer ranging from -1000 to 1000, then he wants to know which words to eliminate to maximize the sum of the importance of remaining words. Negative importance just means that George thought it useless and is a waste of time to recite the word.
Note that although he can eliminate any number of words from the word list, he can never change the order between words. In another word, the order of words appeared on the word list is consistent with the order in the input. In addition, a word may have different meanings, so it can appear on the list more than once, and it may have different importance in each occurrence.
Input
The first line contains an integer T(1 <= T <= 50), indicating the number of test cases.
Each test case contains several lines.
The first line contains an integer N(1 <= N <= 2 104), indicating the number of words.
Then N lines follows, each contains a string Si and an integer Wi, representing the word and its importance. Si contains only lowercase letters.
You can assume that the total length of all words will not exceeded 3 105.
Output
For each test case in the input, print one line: “Case #X: Y”, where X is the test case number (starting with 1) and Y is the largest importance of the remaining sequence of words.
Sample Input
1
5
a 1
ab 2
abb 3
baba 5
abbab 8
Sample Output
Case #1: 14
题目链接:HDU 4117
后缀数组:据说题目是随机数据,后缀数组是碰巧能过,否则人造数据肯定T;
还是用AC自动机比较的好(这题AC自动机简直是噩梦,debug了一天,最后发现是各种小错误引起的不是ME就是WA,果然还是太太太蒻了)
题意就是类似于带权的最长上升子序列,而这里的最长上升自序列的条件是前者是后者的子串,用
由于可以利用区间最小值与区间长度之间的单调性关系优化一点复杂度,从小到大枚举当前位置的
说说AC自动机吧,没做这道题之前还不知道fail指针还有这种用法,先想想fail指针指向的两头有什么关系?显然如果从节点
后缀数组代码:
1 |
|
AC自动机代码(注意pushdown不要写错):
1 |
|