import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc=new Scanner(System.in); char[]c1=sc.next().toCharArray(); char[]c2=sc.next().toCharArray(); int[][]c=new int[c1.length+1][c2.length+1]; int max=0; for (int i = 1; i <c.length; i++) { for (int j =1; j <c[i].length; j++) { if(c1[i-1]==c2[j-1]) c[i][j]=c[i-1][j-1]+1; else c[i][j]=Math.max(c[i-1][j], c[i][j-1]); if(c[i][j]>max)max=c[i][j]; } } System.out.println(max); } }
0.0分
1 人评分
十->二进制转换 (C++代码)(零和负数需要特殊处理)浏览:1135 |
C语言程序设计教程(第三版)课后习题6.5 (Java代码)浏览:1250 |
C语言程序设计教程(第三版)课后习题10.4 (C语言代码)浏览:590 |
C语言程序设计教程(第三版)课后习题11.5 (C语言代码)浏览:1550 |
A+B for Input-Output Practice (C++代码)浏览:632 |
十->二进制转换 (C语言代码)浏览:1330 |
这可能是一个假的冒泡法浏览:1071 |
ASCII帮了大忙浏览:797 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:541 |
完数 (C语言代码)浏览:757 |