Magic Number(dp)

Magic Number

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)
Total Submission(s): 1057    Accepted Submission(s): 444

Problem Description
There are many magic numbers whose lengths are less than 10. Given some queries, each contains a single number, if the Levenshtein distance (see below) between the number in the query and a magic number is no more than a threshold, we call the magic number is the lucky number for that query. Could you find out how many luck numbers are there for each query?

Levenshtein distance (from Wikipedia http://en.wikipedia.org/wiki/Levenshtein_distance):
In information theory and computer science, the Levenshtein distance is a string metric for measuring the amount of difference between two sequences. The term edit distance is often used to refer specifically to Levenshtein distance.
The Levenshtein distance between two strings is defined as the minimum number of edits needed to transform one string into the other, with the allowable edit operations being insertion, deletion, or substitution of a single character. It is named after Vladimir Levenshtein, who considered this distance in 1965.
For example, the Levenshtein distance between "kitten" and "sitting" is 3, since the following three edits change one into the other, and there is no way to do it with fewer than three edits:
1.kitten → sitten (substitution of 's' for 'k')
2.sitten → sittin (substitution of 'i' for 'e')
3.sittin → sitting (insertion of 'g' at the end).
 
Input
There are several test cases. The first line contains a single number T shows that there are T cases. For each test case, there are 2 numbers in the first line: n (n <= 1500) m (m <= 1000) where n is the number of magic numbers and m is the number of queries.
In the next n lines, each line has a magic number. You can assume that each magic number is distinctive.
In the next m lines, each line has a query and a threshold. The length of each query is no more than 10 and the threshold is no more than 3.
 
Output
For each test case, the first line is "Case #id:", where id is the case number. Then output m lines. For each line, there is a number shows the answer of the corresponding query.
 
Sample Input
1 5 2 656 67 9313 1178 38 87 1 9509 1
 
Sample Output
Case #1: 1 0
 
Author
BJTU
 
Source
 
Recommend
zhoujiaqi2010
 

Statistic | Submit | Discuss | Note


参考资料:点击打开链接

按照参考资料上的方法做会超时,如果设一个计数器记录修改字符串的次数,当次数大于threshold时立即返回就不会超时,但是时间也要500+,不过这个方法倒是非常简而易行,不用花太多脑筋。

AC Code:

 1 #include <iostream>
 2 #include <cstdio>
 3 #include <cstring>
 4 
 5 using namespace std;
 6 
 7 char ch[1501][11], q[11];
 8 int th, i;
 9 
10 int min(int a, int b, int c)
11 {
12     if(a > b) a = b;
13     if(a > c) a = c;
14     return a;
15 }
16 
17 int lev(int lena, int lenb, int cnt)
18 {
19     if(cnt > th) return cnt;
20     int cost = 0;
21     if(ch[i][lena - 1] != q[lenb - 1]) cost = 1;
22     if(lena == 0) return lenb;
23     if(lenb == 0) return lena;
24     return min(lev(lena-1, lenb, cnt+cost)+1, lev(lena, lenb-1, cnt+cost)+1, lev(lena-1, lenb-1, cnt+cost)+cost);
25 }
26 
27 int main()
28 {
29     int n, m, t, id = 0, cnt;
30     scanf("%d", &t);
31     while(t--)
32     {
33         scanf("%d %d", &n, &m);
34         for(i = 0; i < n; ++i)
35         {
36             scanf("%s", ch[i]);
37         }
38         printf("Case #%d:\n", ++id);
39         while(m--)
40         {
41             cnt = 0;
42             scanf("%s %d", q, &th);
43             for(i = 0; i < n; ++i)
44             {
45                 if(lev(strlen(ch[i]), strlen(q), 0) <= th) cnt++;
46             }
47             printf("%d\n", cnt);
48         }
49     }
50     return 0;
51 }
原文地址:https://www.cnblogs.com/cszlg/p/2910432.html