Corporate Identity
Time Limit: 9000/3000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 817 Accepted Submission(s): 325
After several other proposals, it was decided to take all existing trademarks and find the longest common sequence of letters that is contained in all of them. This sequence will be graphically emphasized to form a new logo. Then, the old trademarks may still be used while showing the new identity.
Your task is to find such a sequence.
After the last trademark, the next task begins. The last task is followed by a line containing zero.
3 aabbaabb abbababb bbbbbabb 2 xyz abc 0
abb IDENTITY LOST
题意是给定4000以内个字符串,找其中最长公共子串,但是要求如果有多个长度相同的话输出按字典序取最小。
这个跟HDU1238类似,不过这个可以考虑用KMP因为是不用考虑反向字符串的。
试了一下,还是直接用find比较快,代码如下:
/************************************************************************* > File Name: Corporate_Identity.cpp > Author: Zhanghaoran > Mail: chilumanxi@xiyoulinux.org > Created Time: 2016年02月23日 星期二 14时01分07秒 ************************************************************************/ #include <iostream> #include <algorithm> #include <cstring> #include <cstdio> #include <cstdlib> #include <string> using namespace std; int n; string str[4010]; int main(void){ while(1){ cin >> n; if(!n) break; int len = 110; int len_pos = 0; for(int i = 0; i < n; i ++){ cin >> str[i]; if(len > str[i].size()){ len = str[i].size(); len_pos = i; } } bool flag= false; string ans; bool vis = true; for(int i = len; i >= 1; i --){ for(int j = 0; i + j <= len; j ++){ string testa = str[len_pos].substr(j, i); for(int k = 0; k < n; k ++){ if(k == len_pos) continue; if(str[k].find(testa) == -1){ flag = true; break; } } if(!flag){ if(vis){ ans = testa; vis = false; } else{ if(testa < ans) ans = testa; } } flag = false; } if(!vis) break; } if(vis) cout << "IDENTITY LOST" << endl; else cout << ans << endl; } }
查看原文:http://chilumanxi.org/2016/02/23/hsu-2328-corporate-identity/