hdu 5559 Frog and String(构造)

582 篇文章 0 订阅
33 篇文章 0 订阅

题目链接:hdu 5559 Frog and String

解题思路

  • n < m:impossible
  • n = m:用全A构造
  • n > m:
    • k = 1:impossible
    • k = 2:用 AAAA….(m-8个A) + ABAABB ABAA…
    • k > 3:用 AAAA….(m-3个A) + ABC ABC ABC …
      特殊情况n = 8, m = 7, k = 2。
      原则上是找到一种构造方式是不会在增加回文子串

代码

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

using namespace std;
const char rep[][10] = {"A", "ABC", "ABAABB"};
const int siz[] = {1, 3, 6};

void draw(int id, int n) {
    for (int i = 0; i < n; i++) {
        int v = i % siz[id];
        printf("%c", rep[id][v]);
    }
}

int main () {
    int cas, n, m, k;
    scanf("%d", &cas);
    for (int kcas = 1; kcas <= cas; kcas++) {
        scanf("%d%d%d", &n, &m, &k);
        printf("Case #%d:\n", kcas);
        if (n < m) printf("Impossible");
        else if (n == m) draw(0, n);
        else {
            if (k == 1) printf("Impossible");
            else if (k == 2) {
                if (n == 8 && m == 7) {
                    printf("AABABBAA");
                } else if (m < 8) printf("Impossible");
                else {
                    draw(0, m-8);
                    draw(2, n-m+8);
                }
            } else {
                if (m < 3) printf("Impossible");
                else {
                    draw(0, m-3);
                    draw(1, n-m+3);
                }
            }
        }
        printf("\n");
    }
    return 0;
}
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值