UVA1584 Circular Sequence

问题描述:

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).

 

输入:

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, ACG and T, are allowed. Each sequence has length at least 2 and at most 100.

 

输出:

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.

 

解题思路:

对于有n个元素的环就有n个排序队列,遍历找出字典序最小的即可

 

AC:

#include "iostream"
#include "cstdio"
#include "cstring"

using namespace std;

const int MAX_N = 102;
char s[MAX_N];
int n;
int T;


bool isLess(char *s, int a, int b)
{
    for(int i = 0; i < n; i++)
    {
        if(s[(a + i) % n] != s[(b + i) % n])
            return s[(a + i) % n] < s[(b + i) % n];
    }
    return false;
}

int main(int argc, char const *argv[])
{
    scanf("%d", &T);
    while(T--)
    {
        scanf("%s", s);
        n = strlen(s);

        int ans = 0;

        for(int i = 0; i < n; i++)
        {
            if(isLess(s, i, ans))
                ans = i;
        }

        for(int i = 0; i < n; i++)
        {
            printf("%c", s[(ans + i) % n]);
        }
        printf("\n");
    }
    return 0;
}

 

总结:

暴力搜索

posted @ 2015-12-03 20:45  小图书馆  阅读(116)  评论(4)    收藏  举报