UVA 1584 Circular Sequence【串的最小循环表示】

本文介绍了一种算法,用于找到给定环状DNA序列的字典序最小线性表示。通过比较不同切割点产生的所有可能线性序列,该算法能够确定最小子序列。

 

Circular Sequence
Time Limit:3000MS Memory Limit:0KB 64bit IO Format:%lld & %llu
Submit

Description

 
Some DNA sequences exist in circular forms as in the following figure, which shows a circular sequence ``CGAGTCAGCT", that is, the last symbol ``T" in ``CGAGTCAGCT" is connected to the first symbol ``C". We always read a circular sequence in the clockwise direction.
\epsfbox{p3225.eps}
Since it is not easy to store a circular sequence in a computer as it is, we decided to store it as a linear sequence. However, there can be many linear sequences that are obtained from a circular sequence by cutting any place of the circular sequence. Hence, we also decided to store the linear sequence that is lexicographically smallest among all linear sequences that can be obtained from a circular sequence.
Your task is to find the lexicographically smallest sequence from a given circular sequence. For the example in the figure, the lexicographically smallest sequence is ``AGCTCGAGTC". If there are two or more linear sequences that are lexicographically smallest, you are to find any one of them (in fact, they are the same).

 

input

The input consists of T test cases. The number of test cases T is given on the first line of the input file. Each test case takes one line containing a circular sequence that is written as an arbitrary linear sequence. Since the circular sequences are DNA sequences, only four symbols, A, C, G and T, are allowed. Each sequence has length at least 2 and at most 100.

Output

Print exactly one line for each test case. The line is to contain the lexicographically smallest sequence for the test case.
The following shows sample input and output for two test cases.

Sample Input

2
CGAGTCAGCT
CTCC

Sample Output

AGCTCGAGTC
CCCT


串的最小循环表示;


AC代码:

#include<cstdio>
#include<cstring> 
#include<algorithm>

using namespace std;

char str[222];

int MR(char *str,int len)
{
	int i=0,j=1,k=0;
	while(i<len&&j<len&&k<len) {
		 int t=str[(i+k)%len]-str[(j+k)%len];
		 if(!t) ++k;
		 else {
		      if(t>0)  i=i+k+1;
		      else j=j+k+1;
		      if(i==j) ++j;
		      k=0;
		 }
	}
	return  min(i,j);
}
int main()
{
	int T;
	scanf("%d",&T);
	while(T--)
	{
		scanf("%s",str);
		int len=strlen(str);
		int t=MR(str,len);
		int i=t;
		while(i<len) printf("%c",str[i++]);
		i=0;
		while(i<t) printf("%c",str[i++]);
		putchar('\n');
	}
	return 0;
 } 


在Unity中使用DOTween实现Sequence动画的循环播放,可以通过设置Sequence循环模式来实现。默认情况下,Sequence动画在播放完成后会停止,但可以通过调用`SetLoops`方法来指定循环次数,甚至设置为无限循环。 ### 实现Sequence动画循环播放 在创建Sequence动画时,可以使用`SetLoops`方法来指定循环次数。以下是一个示例代码,展示了如何让Sequence动画无限循环播放: ```csharp using UnityEngine; using DG.Tweening; public class SequenceLoopExample : MonoBehaviour { private Sequence sequence; void Start() { sequence = DOTween.Sequence(); // 添加动画到序列中 sequence.Append(transform.DOMove(new Vector3(0, 0, 4), 1f)); sequence.Append(transform.DOMove(new Vector3(6, 0, 4), 1f)); sequence.Append(transform.DOMove(new Vector3(2, 0, 6), 1f)); // 设置循环模式为无限循环 sequence.SetLoops(-1, LoopType.Restart); // -1 表示无限循环,LoopType.Restart 表示重新开始 } public void StartAnimation() { sequence.Play(); } } ``` ### 解释 - **`SetLoops(int loops, LoopType loopType)`**:该方法用于设置Sequence动画的循环次数和循环类型。第一个参数`loops`表示循环次数,如果设置为-1,则表示无限循环。第二个参数`loopType`表示循环的类型,常用的有`LoopType.Restart`(重新开始)和`LoopType.Yoyo`(来回播放)[^2]。 - **`Play()`**:调用该方法开始播放Sequence动画。 ### 注意事项 - 如果希望动画在每次循环时都重新开始,可以使用`LoopType.Restart`。如果希望动画在反向播放后再正向播放,可以使用`LoopType.Yoyo`。 - 每次触发动画时重新创建Sequence对象并不是最佳实践,因为这会导致不必要的性能开销。通过正确设置循环模式,可以在不重新创建Sequence的情况下实现循环播放。 ###
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值