zoukankan      html  css  js  c++  java
  • Magic Number(Levenshtein distance算法)

    Magic Number
    Time Limit:1000MS     Memory Limit:65536KB     64bit IO Format:%I64d & %I64u

    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
     
     Levenshtein distance算法
    s[i] == t[j] :dp[i][j] = min (dp[i-1][j-1] , min(dp[i-1][j] , dp[i][j-1]) + 1) ;
    s[i] != t[j]: dp[i][j] = min (dp[i-1][j-1] , dp[i-1][j] , dp[i][j-1]) + 1 ;
    其实就是个dp.
    这种复杂度为O(n*m) ;
    还有一种复杂度为O(n*k),k为最大改变次数,n为字符串长度。
  • 相关阅读:
    【转载】LTE中RB、RE、CP、REG、CCE、子载波
    LTE中,DCI和UCI为什么要定义那么多格式
    LTE中的PDCCH介绍
    ARQ
    (转)MYSQL远程登录权限设置
    (转)忘记wamp-mysql数据库root用户密码重置方法
    phpwind部署问题
    在aliyun遇到一些问题
    (转)PHP5使用cookie时报错 cannot modify header information
    (转)WAMP多站点配置
  • 原文地址:https://www.cnblogs.com/get-an-AC-everyday/p/4761702.html
Copyright © 2011-2022 走看看