B - String LCM

B - String LCM

题目
Let’s define a multiplication operation between a string a and a positive integer x: a⋅x is the string that is a result of writing x copies of a one after another. For example, “abc” ⋅ 2 = “abcabc”, “a” ⋅ 5 = “aaaaa”.

A string a is divisible by another string b if there exists an integer x such that b⋅x=a. For example, “abababab” is divisible by “ab”, but is not divisible by “ababab” or “aa”.

LCM of two strings s and t (defined as LCM(s,t)) is the shortest non-empty string that is divisible by both s and t.

You are given two strings s and t. Find LCM(s,t) or report that it does not exist. It can be shown that if LCM(s,t) exists, it is unique.

Input
The first line contains one integer q (1≤q≤2000) — the number of test cases.

Each test case consists of two lines, containing strings s and t (1≤|s|,|t|≤20). Each character in each of these strings is either ‘a’ or ‘b’.

Output
For each test case, print LCM(s,t) if it exists; otherwise, print -1. It can be shown that if LCM(s,t) exists, it is unique.
Input

3
baba
ba
aa
aaa
aba
ab

output

baba
aaaaaa
-1

Note

In the first test case, “baba” = “baba” ⋅ 1 = “ba” ⋅ 2.
In the second test case, “aaaaaa” = “aa” ⋅ 3 = “aaa” ⋅ 2.

题目描述:给定两个字符串,求一个字符串(要求该字符串同时是给定两个字符串的整数倍,也就是重复的)若无,则返回-1;

思路:分别求给定的两个字符串的最小的循环节,和分别有几个最小循环节s1,t1,若循环节相同,则重复输出lcm(s1,t1),否则-1;

#include<stdio.h>
#include<string>
#include<cstring>
#include<algorithm>
#include<iostream>
using namespace std;
const int maxn = 1e5+5; 
int ss,tt;
char s[25],t[25];
int gcd(int x, int y)
{
	return y > 0 ? gcd(y,x%y) : x;
}
bool ii(int m) {
    if(ss % m != 0) return false;
    for(int i = 0;i < ss;i++) {
        if(s[i] != s[i % m]) return false;
    }
    return true;
}
bool ff(int m) {
    if(tt % m != 0) return false;
    for(int i = 0;i < tt;i++) {
        if(t[i] != t[i % m]) return false;
    }
    return true;
}
int main()
{
	int q,flag;
	scanf("%d",&q);
	while(q--)
	{
		scanf("%s %s",s,t);
		flag = 1;
		int s1,t1;
		ss=strlen(s),tt=strlen(t);
		for(int i = 1;i <= ss;i++)
		{
            if(ii(i)) 
			{
                s1 = i;
				break;
            }
        }
        for(int i = 1;i <= tt;i++) 
		{
            if(ff(i)) 
			{
                t1 = i;
				break;
            }
        }
        if(t1!=s1) flag = 0;
        else {
        	for(int i = 0; i < t1; i++)
        	{
        		if(s[i]!=t[i]) 
        		{
        			flag = 0;
        			break;
				}
			}
		}
		if(!flag) printf("-1\n");
		else{
			ss=ss/s1;
			tt=tt/t1;
			int lcm = (ss*tt)/gcd(ss,tt);
			for(int i = 0; i < lcm;i++)
			{
				for(int j = 0; j < s1; j++)
				{
					printf("%c",s[j]);
				}	
			}
			printf("\n");
		} 
	}
	return 0;
 } 

参考博客

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值