interviewstreet-string similarity - 클래스 스트리밍 프로세스
문제 해결 보고서:
간단한 문자열 처리로 S의 모든 접두사에 대해 S와 유사도를 계산하고 유사도 계산은 귀속으로 한다.
#include
#include
using namespace std;
int getSim(char* str1, char* str2)
{
if ( *str1 == '\0' || *str2 == '\0')
return 0;
if (*str1 != *str2)
return 0;
if ( *str1 == *str2)
return 1 + getSim(str1+1, str2+1);
}
int main()
{
char * s = new char[100000];
int N;
cin >> N;
for (int i = 0; i < N; i++)
{
int similarity = 0;
cin >> s;
similarity += strlen(s);
for (int i = 1; i < strlen(s); i++)
{
similarity += getSim(s, s + i);
}
cout << similarity << endl;
}
}
부록:
String Similarity (25 Points)
For two strings A and B, we define the similarity of the strings to be the length of the longest prefix common to both strings. For example, the similarity of strings "abc"and "abd"is 2, while the similarity of strings "aaa"and "aaab"is 3.
Calculate the sum of similarities of a string S with each of it's suffixes.
Input: The first line contains the number of test cases T. Each of the next T lines contains a string each.
Output: Output T lines containing the answer for the corresponding test case.
Constraints: 1 <= T <= 10 The length of each string is at most 100000 and contains only lower case characters.
Sample Input: 2 ababaa aa
Sample Output: 11 3
Explanation: For the first case, the suffixes of the string are "ababaa", "babaa", "abaa", "baa", "aa"and "a". The similarities of each of these strings with the string "ababaa"are 6,0,3,0,1,1 respectively. Thus the answer is 6 + 0 + 3 + 0 + 1 + 1 = 11.
For the second case, the answer is 2 + 1 = 3.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.