Search found 1 match

by Choi
Fri Jan 27, 2006 4:32 pm
Forum: Volume 101 (10100-10199)
Topic: 10100 - Longest Match
Replies: 95
Views: 35242

10100

I try to submit , But Wa...

I don't know why get WA...Help Me T_T


#include <stdio.h>
#include <string.h>
#include <ctype.h>

#define MAX(x, y) ((x) > (y) ? (x) : (y))
#define N 1000
int LCS[N+1][N+1];

main()
{
char s1[N+1][1001], s2[N+1][1001];
char tmp[1001], tmp1[1001];
int i, j,j1, j2 ...

Go to advanced search