Online JudgeProblem SetAuthorsOnline ContestsUser
Web Board
Home Page
F.A.Qs
Statistical Charts
Problems
Submit Problem
Online Status
Prob.ID:
Register
Update your info
Authors ranklist
Current Contest
Past Contests
Scheduled Contests
Award Contest
User ID:
Password:
  Register

Re:int c[501][501]

Posted by LiZhiXu at 2006-04-26 23:06:43 on Problem 1458
In Reply To:why?code Posted by:mathsoft at 2006-04-26 21:24:56
> #include<stdio.h>
> #include<string.h>
> char a[501],b[501],c[501][501];//--------->不能用char类型
> int main()
> {freopen("in.txt","r",stdin);
>  int i,j,na,nb;
>  while(scanf("%s%s",a,b)!=EOF)
>  {
>   na=strlen(a);nb=strlen(b);
>   for(i=0;i<=na;i++)c[i][0]=0;
>   for(j=0;j<=nb;j++)c[0][j]=0;
>   for(i=1;i<=na;i++)
>     for(j=1;j<=nb;j++)
>     { if(a[i-1]==b[j-1])c[i][j]=c[i-1][j-1]+1;
>       else if(c[i][j-1]>c[i-1][j]) c[i][j]=c[i][j-1];
>       else c[i][j]=c[i-1][j];
>     }  
>   printf("%d\n",c[na][nb]);
>  }while(1);
> }

Followed by:

Post your reply here:
User ID:
Password:
Title:

Content:

Home Page   Go Back  To top


All Rights Reserved 2003-2013 Ying Fuchen,Xu Pengcheng,Xie Di
Any problem, Please Contact Administrator