2012年9月8日

AGTC POJ 3356

摘要: View Code 1 #include 2 #include 3 #include 4 int min(int a,int b,int c){ 5 int temp=a>b?b:a; 6 return temp>c?c:temp; 7 } 8 const int N=1010; 9 char a[N],b[N];10 int operations(int m,int n){;11 int **dp=new int*[m+1];12 for(int i=0;i<=m;i++)13 dp[i]=new int[n+1];14 dp[0][... 阅读全文

posted @ 2012-09-08 10:54 Acmer_Roney 阅读(168) 评论(0) 推荐(0) 编辑

导航