UVa - 10340 - All in All(暴力遍历、子序列)

 UVa - 10340 - All in All(暴力遍历、子序列)_第1张图片



#include
#include
using namespace std;
char s1[101000];
char s2[101000];

int main(){

//	freopen("input.txt","r",stdin);

	while(scanf("%s %s",s1,s2)!=EOF){
		int len1 = strlen(s1);
		int len2 = strlen(s2);
		int x = 0;
		int j = 0;
		int i = 0;
		int flag = 0;
		
		
		for(i=0 ;i




你可能感兴趣的:(UVa,竞赛常用算法题目解析)