POJ 3080 Blue Jeans 三种暴力法

本题可以使用暴力法直接求解,思路也挺简单的,不过实现起来也挺麻烦的。

本题最暴力直接使用strstr过。 这里使用hash表的方法过,这种方法好像有个学名的,主要思路就是把一个需要查找的字符串赋予一个数值,那么就可以把一串字符串的比较转换为一个值的比较了,那么就可以加速字符串的查找了。

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

const long long MOD = (int)(1E9+7);//如果增加mod的话,会有很大几率出错的,本题就不能增加MOD,否则一直WA,不使用MOD就马上AC了
const int MAX_N = 61;
const int MAX_M = 11;
const int ALP_LEN = 4;
const int SIGNIFICANT = 3;
const char *intToChar = "ATGC";
short charToInt[256];
char dict[MAX_M][MAX_N];
char subStr[MAX_N];
long long finger;

bool searchFinger(char *txt, int L, int len)
{
	long long F = 0;
	long long K = 1;
	int i = 0;
	for (; i < L; i++)
	{
		F = ((F*5)+charToInt[txt[i]]);
		K = K*5;
	}
	if (F == finger) return true;
	for (int j = 0; i < len; j++, i++)
	{
		F = ((F*5)+charToInt[txt[i]]);
		F = (F-K*charToInt[txt[j]]);
		if (F == finger) return true;
	}
	return false;
}

int main()
{
	charToInt['A'] = 1;//不能从0开始,如果使用hash法
	charToInt['T'] = 2;
	charToInt['G'] = 3;
	charToInt['C'] = 4;
	int T, n;
	scanf("%d", &T);
	while (T--)
	{
		scanf("%d", &n);
		getchar(); // get rid of '\n'
		for (int i = 0; i < n; i++)
		{
			gets(dict[i]);
		}
		int len = MAX_N - 1;
		int maxLen = 0;
		char res[MAX_N] = {'\0'};
		for (int i = 0; i < len; i++)//search every start position
		{
			finger = 0;
			for (int L = 1; L <= len-i; L++)//every substring
			{
				subStr[L-1] = dict[0][i+L-1];
				subStr[L] = '\0';
				finger = ((finger*5)+(charToInt[subStr[L-1]]));

				int j = 1;
				for (; j < n; j++)
				{
					if (!searchFinger(dict[j], L, len)) break;
				}
				if (j != n) break;//break to the next start position

				if (L > maxLen || (L==maxLen && strcmp(res, subStr)>0))
				{//alphabetic first
					strcpy(res, subStr);
					maxLen = L;
				}
			}
		}
		if (maxLen < SIGNIFICANT)
		{
			puts("no significant commonalities");
		}
		else
		{
			printf("%s\n", res);
		}
	}
	return 0;
}

使用strstr也可以,时间效率是一样的:

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

const int MAX_N = 61;
const int MAX_M = 11;
const int ALP_LEN = 4;
const int SIGNIFICANT = 3;
char dict[MAX_M][MAX_N];
char subStr[MAX_N];

int main()
{
	int T, n;
	scanf("%d", &T);
	while (T--)
	{
		scanf("%d", &n);
		getchar(); // get rid of '\n'
		for (int i = 0; i < n; i++)
		{
			gets(dict[i]);
		}
		int len = MAX_N - 1;
		int maxLen = 0;
		char res[MAX_N] = {'\0'};
		for (int i = 0; i < len; i++)//search every start position
		{
			for (int L = 1; L <= len-i; L++)//every substring
			{
				subStr[L-1] = dict[0][i+L-1];
				subStr[L] = '\0';
				int j = 1;
				for (; j < n; j++)
				{
					if (!strstr(dict[j], subStr)) break;
				}
				if (j != n) break;//break to the next start position

				if (L > maxLen || (L==maxLen && strcmp(res, subStr)>0))
				{//alphabetic first
					strcpy(res, subStr);
					maxLen = L;
				}
			}
		}
		if (maxLen < SIGNIFICANT)
		{
			puts("no significant commonalities");
		}
		else
		{
			printf("%s\n", res);
		}
	}
	return 0;
}

使用strstr的第二种方法:

const int MAX_N = 61;
const int MAX_M = 11;
const int ALP_LEN = 4;
const int SIGNIFICANT = 3;
char dict[MAX_M][MAX_N];
char subStr[MAX_N];

int main()
{
	int T, n;
	scanf("%d", &T);
	while (T--)
	{
		scanf("%d", &n);
		getchar(); // get rid of '\n'
		for (int i = 0; i < n; i++)
		{
			gets(dict[i]);
		}
		int len = MAX_N - 1;
		int maxLen = 0;
		char res[MAX_N];
		for (int i = 0; i < len; i++)//search every start position
		{
			int len2 = len-i;
			strncpy(subStr, dict[0]+i, len2);
			for (int L = len2; L > 0; L--)//every substring
			{
				subStr[L] = '\0';
				int j = 1;
				for (; j < n; j++)
				{
					if (!strstr(dict[j], subStr)) break;
				}
				if (j == n)
				{
					if (L > maxLen || (L==maxLen && strcmp(res, subStr)>0))
					{//alphabetic first
						strcpy(res, subStr);
						maxLen = L;
					}
					break;	//break to the next start position
				}
			}
		}
		if (maxLen < SIGNIFICANT)
		{
			puts("no significant commonalities");
		}
		else
		{
			printf("%s\n", res);
		}
	}
	return 0;
}

POJ 3080 Blue Jeans 三种暴力法

时间: 2024-11-20 07:03:44

POJ 3080 Blue Jeans 三种暴力法的相关文章

POJ 3080 Blue Jeans Trie后缀树解法

题目是牛仔裤的意思,不过看不出题意和Blue Jeans有什么关系. 本题的数据是很水的,数据量小,故此可以使用非常暴力的方法过,也可以使用不那么暴力的KMP过. 这里使用更加不暴力的Trie后缀树过,这种解法就一点都不水了,呵呵. 思路: 1 建立所有字符串的后缀Trie树 2 增加额外信息,看每过路径是否是所有的字符串都经过了,如果是,那么就是合法的字符串了,查找最长的这样的字符串 3 优化一下:如果不是所有字符串的经过的路径,那么就可以直接返回,不往下搜索了 最后,我发现删除Trie都是很

POJ 3080 Blue Jeans(KMP 最长公共子串)

Blue Jeans Description The Genographic Project is a research partnership between IBM and The National Geographic Society that is analyzing DNA from hundreds of thousands of contributors to map how the Earth was populated. As an IBM researcher, you ha

poj 3080 Blue Jeans (kmp暴力)

# include <stdio.h> # include <algorithm> # include <cstring> using namespace std; int next[100]; char pat[100]; char a[100][100]; int ma; int lenp; int n; void Getnext() { int i=0,j=-1; next[0]=-1; while(i<=lenp) { if(j==-1||pat[j]==

POJ 3080 Blue Jeans KMP解法

使用KMP寻找最长的前缀的方法,比一般的暴力法有快了很多. 本题一般的暴力法需要的是O(m*n*n*n),其中m是有多少字符串,而n是字符串长度,而使用KMP就可以把时间效率提高到O(m*n*n),减少了一个n,提高了一个档次啦. 速度快很多. 准确来说应该是利用KMP寻找一个字符串A,在另一个字符串B任意位置出现的A的最长的前缀字符串. 理解好KMP的next table就好办了.每次查找到相等字符的时候,保存好最长的前缀. 注意本题的条件:选取最前的字典顺序输出.老害我错的条件. #incl

poj 3080 Blue Jeans (KMP)

http://poj.org/problem?id=3080 Blue Jeans Description The Genographic Project is a research partnership between IBM and The National Geographic Society that is analyzing DNA from hundreds of thousands of contributors to map how the Earth was populate

poj 3080 Blue Jeans 暴力

Blue Jeans Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 14283   Accepted: 6356 Description The Genographic Project is a research partnership between IBM and The National Geographic Society that is analyzing DNA from hundreds of thousa

POJ 3080 Blue Jeans(后缀数组+二分答案)

[题目链接] http://poj.org/problem?id=3080 [题目大意] 求k个串的最长公共子串,如果存在多个则输出字典序最小,如果长度小于3则判断查找失败. [题解] 将所有字符串通过拼接符拼成一个串,做一遍后缀数组,二分答案,对于二分所得值,将h数组大于这个值的相邻元素分为一组,判断组内元素是否覆盖全字典,是则答案成立,对于答案扫描sa,输出第一个扫描到的子串即可. [代码] #include <cstdio> #include <cstring> #inclu

POJ 3080 Blue Jeans(串)

题目网址:http://poj.org/problem?id=3080 思路: 以第一个DNA序列s为参考序列,开始做以下的操作. 1.将一个字母s[i]作为匹配串.(i为当前遍历到的下标) 2.遍历所有序列,看是否是所有序列的公共子串 3.是所有序列的子串的话,再往后增加一个字母,组成一个长度len+1的匹配串(设原先匹配串长度为len),重复步骤2 4.不是所有序列的子串的话,i=len+i;判断len是否大于3,是的话保存子串.len=0;重复步骤1.(为什么 i=len+i呢?因为len

poj 3080 Blue Jeans(kmp)

Description The Genographic Project is a research partnership between IBM and The National Geographic Society that is analyzing DNA from hundreds of thousands of contributors to map how the Earth was populated. As an IBM researcher, you have been tas