G - Mnemonics and Palindromes 3 URAL - 1737(回文)

As you remember, when Vasechkin was preparing a problem for the latest student contest, he spent a lot of time trying to invent an unusual and complex name for this problem. The name that Vasechkin had invented was so complex that none of the participants of that contest even started reading the statement of his problem.
After the contest, Chairman of the program committee announced that he refused to take part in the preparation of contests as long as such inappropriate people as Vasechkin worked on the program committee. That was how Vasechkin became the new Chairman of the program committee, and now he is preparing the next programming contest.
Vasechkin has decided that this time the names of all the problems will consist of the letters a, b, and c only and the length of each name will be equal to n. In addition, the names must be extremely complex. A name is extremely complex if none of its substrings consisting of at least two symbols is a palindrome. Help Vasechkin find all extremely complex names for the problems of the contest.

Input
The only input line contains the integer n (1 ≤ n ≤ 20000).
Output
Output all different extremely complex names of length n consisting of the letters a, b, and c only. The names should be given in the alphabetical order, one per line. If the total length of the names exceeds 100000 letters, output the only line “TOO LONG”.
Example
input

2

output

ab
ac
ba
bc
ca
cb

题意:给出字符串的长度,字符串仅由a,b,c组成,字符串内不能含有回文串,其中aa,bb,cc的也算回文,问字符串有多少可能。假如字符串一开始为abc为了不组成回文则下一个只能一次放a,b,c则该长度为n的字符串就前三个不停循环,总共有六种情况:abc,acb,bca,bac,cab,cba,这六种情况循环。

#include<stdio.h>
#include<stdlib.h>
#include<string.h>
int main()
{
    char a[10010][4] = {"abc","acb","bac","bca","cab","cba"};
    int n,i,j;
    scanf("%d",&n);
    if(n == 1) printf("a\nb\nc\n");
    else if(n*6 > 100000) printf("TOO LONG\n");
    else
    {
        for(i=0;i<6;i++)
        {
            for(j=0;j<n;j++)
            {
                printf("%c",a[i][j%3]);
            }
            printf("\n");
        }
    }
    return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值