以下是问题陈述和解决方案。两个测试用例对我失败了。帮帮我搞清楚。
如果从两端读取相同的字符串,则称该字符串为回文结构。给定字符串S
,您可以执行循环移位。更正式地说,你可以从任何一端(头部或尾部)挑选任何一个角色,你可以在另一端追加该角色。例如,如果字符串是"abc"
,那么如果我们使用头部位置的字符进行移位,则字符串变为"bca"
。同样,如果我们使用尾部的字符进行移位,则输入字符串变为"cab"
。你的任务是找出制作给定字符串所需的最小班次数,即回文数。如果我们无法将字符串转换为回文,请打印-1
。
输入格式:
第一行以T
开头,即测试用例数,然后T
行将包含一个字符串S
。
输出格式:
如果每个字符串可以作为回文,则打印最小循环移位数,否则为-1
。
约束:
1<=T<=100
,
1<=|S|<=300
,S
仅包含小写字母('a'-'z')
。
示例输入和输出
输入
4
abbb
aaabb
aabb
abc
输出
-1
1
1
-1
说明:
对于测试用例2(aaabb
):
将尾巴角色移到头部,结果将是&#34; baaab&#34;,这是一个回文。这是一项操作,需要最少的班次才能使给定的字符串成为回文。
对于测试用例3(aabb
):
将给定字符串转换为回文的一种方法是,将头部的字符移到尾部,结果将是"abba"
,这是一个回文。另一种方法是将尾部的角色移动到头部,结果将是"baab"
,这也是一个回文。两者都只需要一个班次。
public class cyclic {
static boolean flag = false;
// fn to check if string is palindrome
static boolean ispal(String s) {
String reverse = "";
int length = s.length();
for (int i = length - 1; i >= 0; i--)
reverse = reverse + s.charAt(i);
reverse = reverse.trim();
if (s.equals(reverse)) {
flag = true;
return true;
} else {
return false;
}
}
// fn to perform front shift
static int frontshift(String str) {
int count = 0;
String element = "";
String s1[] = str.split("");
Deque<String> dequeA = new LinkedList<String>();
for (int i = 1; i < s1.length; i++) {
dequeA.add(s1[i]);
}
while (!ispal(str)) {
if (count <= str.length()) {
element = "";
String firstElement = dequeA.removeFirst();
dequeA.addLast(firstElement);
for (String object : dequeA) {
element = element + object;
}
str = element;
count++;
} else {
break;
}
}
return count;
}
// fn to perform backshift
static int backshift(String str) {
int count = 0;
String element = "";
String s1[] = str.split("");
Deque<String> dequeA = new LinkedList<String>();
for (int i = 1; i < s1.length; i++) {
dequeA.add(s1[i]);
}
while (!ispal(str)) {
if (count <= str.length()) {
element = "";
String firstElement = dequeA.removeLast();
dequeA.addFirst(firstElement);
for (String object : dequeA) {
element = element + object;
}
str = element;
count++;
} else {
break;
}
}
return count;
}
public static void main(String args[]) throws IOException {
BufferedReader br =
new BufferedReader(new InputStreamReader(System.in));
List<Integer> list = new ArrayList<Integer>();
int range = Integer.parseInt(br.readLine());
for (int i = 0; i < range; i++) {
String s = br.readLine();
int l1 = frontshift(s);
int l2 = backshift(s);
if (flag == true) {
if (l1 <= l2) {
list.add(l1);
} else {
list.add(l2);
}
} else {
list.add(-1);
}
flag = false;
}
for (Integer integer : list) {
System.out.println(integer);
}
}
}
答案 0 :(得分:1)
我根据您的代码解决了您的任务:
import java.util.Scanner;
public class PalyndromeTest {
static boolean isPalyndrome(String s, int shift) {
int n = s.length();
if(shift < 0) shift+=n;
for(int pos = 0; pos < n/2; pos++) {
if(s.charAt((pos+shift)%n) != s.charAt((n-pos-1+shift)%n))
return false;
}
return true;
}
static int findShift(String s) {
for(int shift = 0; shift <= s.length()/2; shift++) {
if(isPalyndrome(s, shift) || isPalyndrome(s, -shift))
return shift;
}
return -1;
}
public static void main(String[] args) {
Scanner s = new Scanner(System.in);
int count = s.nextInt();
s.nextLine();
for(int i=0; i<count; i++) {
System.out.println(findShift(s.nextLine()));
}
}
}
首先,isPalyndrome
方法。它检查该字符串是否是瘫痪综合征,并且也可以正向或负向移位。请注意,例如,对于长度为5的字符串,shift = -1
与shift = 4
相同。我们不创建任何新字符串,我们只使用String.charAt
方法扫描现有字符串。我们使用% n
余数运算符自动移回到字符串结束时开始的字符串。请注意,我们应该只检查字符串的一半。
其次,findShift
方法。它只是迭代从0
到s.length()/2
的所有班次(更大的班次不需要检查,因为它们等于已检查的负班次)。在每次迭代中,它都会检查正偏移和负偏移。
最后,main
方法读取标准输入并为每个输入行调用findShift
。它会立即输出结果,但如果需要,您可以将其收集到列表中并在最后输出。