{"id":45262,"date":"2023-12-11T15:05:20","date_gmt":"2023-12-11T07:05:20","guid":{"rendered":"https:\/\/wx.kaifamiao.info\/?p=45262"},"modified":"2023-12-11T15:05:20","modified_gmt":"2023-12-11T07:05:20","slug":"%e6%89%8b%e5%86%99%e4%bb%a3%e7%a0%81%ef%bc%9alcs%e9%97%ae%e9%a2%98-2","status":"publish","type":"post","link":"http:\/\/wx.kaifamiao.info\/index.php\/2023\/12\/11\/%e6%89%8b%e5%86%99%e4%bb%a3%e7%a0%81%ef%bc%9alcs%e9%97%ae%e9%a2%98-2\/","title":{"rendered":"\u624b\u5199\u4ee3\u7801\uff1aLCS\u95ee\u9898"},"content":{"rendered":"<p>&#8220;`&#8221;                    \u53c2\u8003\u56de\u7b54\uff1a<\/p>\n<p>\u6700\u957f\u516c\u5171\u5b50\u5e8f\u5217\u4ee3\u7801<\/p>\n<p>&lt;pre&gt;&lt;code&gt;void LCS(string X, string Y, vector &amp; a)<br \/>\n{<br \/>\nint m=X.length(),n=Y.length();<br \/>\nfor (int j = 1; j &lt;= n; j++) {<br \/>\na[0]=0;\/\/\u5185\u5c42\u5faa\u73af\u7ed3\u675f,a[0]\u8981\u7f6e\u96f6\uff0c\u60f3\u8c61\u6c42a1\u6240\u4f9d\u8d56\u7684a0=0\uff0c\u5373\u662f\u521d\u59cb\u5316\u6b65\u9aa4<br \/>\n    for (int i = 1; i &lt;= m; i++) {<br \/>\n    int pre=a[0];<br \/>\n    int temp = a[i];<br \/>\n    if (X[i &#8211; 1] == Y[j &#8211; 1])<br \/>\n    a[i] =pre+1;<br \/>\n    else a[i] = max(a[i],a[i-1]);<br \/>\n        a[0]=temp;<br \/>\n    }<br \/>\n    }<br \/>\n    }<br \/>\n\/\/ci\u8868\u793aX\u7684\u524di\u4e2a\u5b57\u7b26\u548cY\u7684\u524dj\u4e2a\u5b57\u7b26\u6240\u5171\u6709\u7684\u5e8f\u5217\u957f\u5ea6\uff1bbi\u7528\u6765\u56de\u6eaf\u5f97\u5230\u7684\u516c\u5171\u5b50\u5e8f\u5217<\/p>\n<p>    void LCS_LENGTH(string X,string Y,vector&gt; &amp; b,vector&gt; &amp; c)<br \/>\n    {<br \/>\n    int m=X.length(),n=Y.length();<br \/>\n    for(int i=0;i&lt;=m;i++)<br \/>\n    c[i][0]=0;<br \/>\n    for(int j=0;j&lt;=n;j++)<br \/>\n    c[0][j]=0;<br \/>\n    int i,j;<br \/>\n    for(i=1;i&lt;=m;i++)<br \/>\n    for(j=1;j&lt;=n;j++)<br \/>\n    if(X[i-1]==Y[j-1])<br \/>\n    {<br \/>\n    c[i][j]=c[i-1][j-1]+1;<br \/>\n    b[i][j]=2;<br \/>\n    }else if(c[i-1][j]&gt;=c[i][j-1])<br \/>\n    {<br \/>\n    c[i][j]=c[i-1][j];<br \/>\n    b[i][j]=1;<br \/>\n    }else<br \/>\n    {<br \/>\n    c[i][j]=c[i][j-1];<br \/>\n    b[i][j]=0;<br \/>\n    }<br \/>\n    }<br \/>\n    \/\/\u5229\u7528\u56de\u6eaf\u548c\u8868b,\u8ffd\u8e2aLCS<\/p>\n<p>    void  PRINT_LCS(vector&gt; &amp; b, string X,int xlen, int ylen,string &amp;s)<br \/>\n    {<br \/>\n    int i=xlen,j=ylen;<br \/>\n    if(i==0||j==0)<br \/>\n        return ;<br \/>\n    if(bi==2)\/\/\u6b64\u65f6\u7b2ci\u4e2a\u5143\u7d20Xi-1\u5c5e\u4e8e\u516c\u5171\u5143\u7d20<br \/>\n    {<br \/>\n     PRINT_LCS(b,X,i-1,j-1,s);<br \/>\n        s+=X[i-1];<br \/>\n    }<br \/>\n    else if(bi==1)\/\/\u4e0a\u9762\u6709ci=ci-1;\u6b64\u65f6\u56de\u6eafci-1<br \/>\n        PRINT_LCS(b,X,i-1,j,s);<br \/>\n    }<br \/>\n    else<br \/>\n        PRINT_LCS(b,X,i,j-1,s);<br \/>\n}<\/p>\n<p>&lt;\/code&gt;&lt;\/pre&gt;<\/p>\n<p>\u00a0<\/p>\n<p>&lt;pre&gt;&lt;code&gt;            &quot;&#8220;`<br \/>\n<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>&#8220;`&#8221; \u53c2\u8003\u56de\u7b54\uff1a \u6700\u957f\u516c\u5171\u5b50\u5e8f\u5217\u4ee3\u7801 &lt;pre&gt;&lt;code&gt; [&hellip;]<\/p>\n","protected":false},"author":7,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[101],"tags":[],"class_list":["post-45262","post","type-post","status-publish","format-standard","hentry","category-c"],"_links":{"self":[{"href":"http:\/\/wx.kaifamiao.info\/index.php\/wp-json\/wp\/v2\/posts\/45262","targetHints":{"allow":["GET"]}}],"collection":[{"href":"http:\/\/wx.kaifamiao.info\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/wx.kaifamiao.info\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/wx.kaifamiao.info\/index.php\/wp-json\/wp\/v2\/users\/7"}],"replies":[{"embeddable":true,"href":"http:\/\/wx.kaifamiao.info\/index.php\/wp-json\/wp\/v2\/comments?post=45262"}],"version-history":[{"count":1,"href":"http:\/\/wx.kaifamiao.info\/index.php\/wp-json\/wp\/v2\/posts\/45262\/revisions"}],"predecessor-version":[{"id":45263,"href":"http:\/\/wx.kaifamiao.info\/index.php\/wp-json\/wp\/v2\/posts\/45262\/revisions\/45263"}],"wp:attachment":[{"href":"http:\/\/wx.kaifamiao.info\/index.php\/wp-json\/wp\/v2\/media?parent=45262"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/wx.kaifamiao.info\/index.php\/wp-json\/wp\/v2\/categories?post=45262"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/wx.kaifamiao.info\/index.php\/wp-json\/wp\/v2\/tags?post=45262"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}