POJ2250 -- Compromise

Source: Internet
Author: User

POJ2250 -- Compromise
Compromise

Time Limit:1000 MS Memory Limit:65536 K
Total Submissions:6614 Accepted:2957 Special Judge

Description

In a few months the European Currency Union will become a reality. however, to join the club, the Maastricht criteria must be fulfilled, and this is not a trivial task for the countries (maybe failed t for Luxembourg ). to enforce that Germany will fulfill the criteria, our government has so far wonderful options (raise taxes, destination stocks, revalue the gold reserves ,...) that it is really hard to choose what to do.

Therefore the German government requires a program for the following task:
Two politicians each enter their proposal of what to do. the computer then outputs the longest common subsequence of words that occurs in both proposals. as you can see, this is a totally fair compromise (after all, a common sequence of words is something what both people have in mind ).

Your country needs this program, so your job is to write it for us.

Input

The input will contain several test cases.
Each test case consists of two texts. each text is given as a sequence of lower-case words, separated by whitespace, but with no punctuation. words will be less than 30 characters long. both texts will contain less than 100 words and will be terminated by a line containing a single '#'.
Input is terminated by end of file.

Output

For each test case, print the longest common subsequence of words occuring in the two texts. if there is more than one such sequence, any one is acceptable. separate the words by one blank. after the last word, output a newline character.

Sample Input

die einkommen der landwirtesind fuer die abgeordneten ein buch mit sieben siegelnum dem abzuhelfenmuessen dringend alle subventionsgesetze verbessert werden#die steuern auf vermoegen und einkommensollten nach meinung der abgeordnetennachdruecklich erhoben werdendazu muessen die kontrollbefugnisse der finanzbehoerdendringend verbessert werden#

Sample Output

die einkommen der abgeordneten muessen dringend verbessert werden

Source

Ulm Local 1997

DP question, locate LCS

#include #include 
  
   #include 
   
    #include 
    
     #include 
     
      #include 
      
       #include 
       
        #include 
        
         #include 
         
          #include 
          
           #include using namespace std;const int inf = 0x3f3f3f3f;int a[110], b[110];char str[33];int ans[110];int dp[110][110];int ch[110][110];int main(){while (~scanf("%s", str)){memset (dp, inf, sizeof(dp));memset (ch, 0, sizeof(ch));map
           
             bianhao;map
            
              tex;bianhao.clear();tex.clear();int cnt = 0, len1 = 0, len2 = 0;bianhao[str] = ++cnt;tex[bianhao[str]] = str; a[++len1] = bianhao[str];while (scanf("%s", str), str[0] != '#'){if (bianhao[str] == 0){bianhao[str] = ++cnt;tex[bianhao[str]] = str; }a[++len1] = bianhao[str];} while (scanf("%s", str), str[0] != '#'){if (bianhao[str] == 0){bianhao[str] = ++cnt;tex[bianhao[str]] = str; }b[++len2] = bianhao[str];} for (int i = 0; i <= len1; i++){dp[i][0] = 0;}for (int i = 0; i <= len2; i++){dp[0][i] = 0;}for (int i = 1; i <= len1; i++){for (int j = 1; j <= len2; j++){if (a[i] == b[j]){dp[i][j] = dp[i - 1][j - 1] + 1;ch[i][j] = 1;}else if(dp[i][j - 1] > dp[i - 1][j]){dp[i][j] = dp[i][j - 1];ch[i][j] = 2;}else{dp[i][j] = dp[i - 1][j];ch[i][j] = 3;}}} cnt = dp[len1][len2];int i = len1, j = len2;while (i > 0 && j > 0){if (ch[i][j] == 1){ans[cnt--] = a[i];i--;j--;}else if(ch[i][j] == 2){j--;}else{i--;}}for (int i = 1; i <= dp[len1][len2]; i++){if (i < dp[len1][len2]){printf("%s ", tex[ans[i]].c_str());continue;}printf("%s\n", tex[ans[dp[len1][len2]]].c_str());}}return 0;}
            
           
          
         
        
       
      
     
    
   
  


Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.