Codeforces 725C Hidden Word【思维+构造】

探讨构建特定路径的算法挑战,需在2*13的网格中形成由27个唯一及重复英文大写字母组成的路径。文章提供了解题思路与AC代码示例。

C. Hidden Word
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Let’s define a grid to be a set of tiles with 2 rows and 13 columns. Each tile has an English letter written in it. The letters don't have to be unique: there might be two or more tiles with the same letter written on them. Here is an example of a grid:

ABCDEFGHIJKLM
NOPQRSTUVWXYZ

We say that two tiles are adjacent if they share a side or a corner. In the example grid above, the tile with the letter 'A' is adjacent only to the tiles with letters 'B', 'N', and 'O'. A tile is not adjacent to itself.

A sequence of tiles is called a path if each tile in the sequence is adjacent to the tile which follows it (except for the last tile in the sequence, which of course has no successor). In this example, "ABC" is a path, and so is "KXWIHIJK". "MAB" is not a path because 'M' is not adjacent to 'A'. A single tile can be used more than once by a path (though the tile cannot occupy two consecutive places in the path because no tile is adjacent to itself).

You’re given a string s which consists of 27 upper-case English letters. Each English letter occurs at least once in s. Find a grid that contains a path whose tiles, viewed in the order that the path visits them, form the string s. If there’s no solution, print "Impossible" (without the quotes).

Input

The only line of the input contains the string s, consisting of 27 upper-case English letters. Each English letter occurs at least once in s.

Output

Output two lines, each consisting of 13 upper-case English characters, representing the rows of the grid. If there are multiple solutions, print any of them. If there is no solution print "Impossible".

Examples
Input
ABCDEFGHIJKLMNOPQRSGTUVWXYZ
Output
YXWVUTGHIJKLM
ZABCDEFSRQPON
Input
BUVTYZFQSNRIWOXXGJLKACPEMDH
Output
Impossible

题目大意:

给你一个字符串(长度固定为27),然后让你将这个字符串变成两行2*13的字符串,使得其有一条路能够走出原字符串的路径来(向相邻的格子走,斜着也可以)。题目保证每个字母都至少出现一次。

样例分析:

ABCDEFGHIJKLMNOPQRSGTUVWXYZ就可以转变为:

ABCDEFGHIJKLM

ZYXWVUTSRQPON

我们直接从A向右走走到M然后向下走到N然后向左走到S,然后斜左上走到G之后,再走下来,然后走到最左端。


思路:


1、首先我们知道,题目保证每个字母都至少出现一次,而且字符串长度为27,那么一定有一个字母出现两次。那么我们首先可以考虑Impossible的情况,不难想到,如果当两个相同字母连在了一起的时候,无论当前怎么走,都一定走出来的是27个字符的路,明显大于2*13,明显就是无解的情况。


2、那么接下来考虑如何摆放能够构成这样的一个可行解:

①我们可以枚举一个格点作为起点,然后再枚举一个字符作为这个格点的起点字符,然后按照如图顺序走一圈,当我们走到第二次出现tmp这个字符的时候,判断一下当前位子是否能够走到上一次出现tmp的位子,如果可以,继续走,否则当前枚举的情况就是一个不可行解:


②对应如果枚举出了一个可行解,那么对应输出即可。


Ac代码:


#include<stdio.h>
#include<iostream>
#include<string.h>
using namespace std;
char a[1500];
char ans[2][30];
int vis[30];
int tmp;
int Slove(int r,int c)
{
    for(int s=0;s<27;s++)
    {
        memset(ans,' ',sizeof(ans));
        int x=r,y=c;
        int flag=0;
        int i=s;
        int cont=0;
        while(1)
        {
            if(cont>=27)return 1;
            if(a[i]-'A'==tmp&&flag==1)
            {
                flag++;
                if(x==1)
                {
                    if(ans[x-1][y]-'A'==tmp||ans[x-1][y+1]-'A'==tmp)
                    {
                        cont++;
                        i++;
                        i%=27;
                        continue;
                    }
                    else break;
                }
                else break;
            }
            if(a[i]-'A'==tmp&&flag==0)flag++;
            ans[x][y]=a[i];
            cont++;
            i++;
            i%=27;
            if(x==0)
            {
                y++;
                if(y==13)y=12,x++;
            }
            else
            {
                y--;
                if(y<0)y=0,x--;
            }
        }
    }
    return 0;
}
int main()
{
    while(~scanf("%s",a))
    {
        memset(vis,0,sizeof(vis));
        int n=strlen(a);
        for(int i=0;i<n;i++)
        {
            vis[a[i]-'A']++;
        }
        for(int i=0;i<26;i++)
        {
            if(vis[i]==2)tmp=i;
        }
        int flag=0;
        int flag2=0;
        for(int i=0;i<n-1;i++)
        {
            if(a[i]==a[i+1])
            {
                flag2=1;
                printf("Impossible\n");
                break;
            }
        }
        if(flag2==1)continue;
        for(int c=0;c<13;c++)
        {
            int tt=Slove(0,c);
            if(tt==1)
            {
                flag=1;
                for(int i=0;i<2;i++)
                {
                    for(int j=0;j<13;j++)
                    {
                        printf("%c",ans[i][j]);
                    }
                    printf("\n");
                }
                break;
            }
        }
        if(flag==0)
        {
            printf("Impossible\n");
        }
    }
}






【电力系统】单机无穷大电力系统短路故障暂态稳定Simulink仿真(带说明文档)内容概要:本文档围绕“单机无穷大电力系统短路故障暂态稳定Simulink仿真”展开,提供了完整的仿真模型与说明文档,重点研究电力系统在发生短路故障后的暂态稳定性问题。通过Simulink搭建单机无穷大系统模型,模拟不同类型的短路故障(如三相短路),分析系统在故障期间及切除后的动态响应,包括发电机转子角度、转速、电压和功率等关键参数的变化,进而评估系统的暂态稳定能力。该仿真有助于理解电力系统稳定性机理,掌握暂态过程分析方法。; 适合人群:电气工程及相关专业的本科生、研究生,以及从事电力系统分析、运行与控制工作的科研人员和工程师。; 使用场景及目标:①学习电力系统暂态稳定的基本概念与分析方法;②掌握利用Simulink进行电力系统建模与仿真的技能;③研究短路故障对系统稳定性的影响及提高稳定性的措施(如故障清除时间优化);④辅助课程设计、毕业设计或科研项目中的系统仿真验证。; 阅读建议:建议结合电力系统稳定性理论知识进行学习,先理解仿真模型各模块的功能与参数设置,再运行仿真并仔细分析输出结果,尝试改变故障类型或系统参数以观察其对稳定性的影响,从而深化对暂态稳定问题的理解。
当前提供的引用内容并未提及关于Codeforces比赛M1的具体时间安排[^1]。然而,通常情况下,Codeforces的比赛时间会在其官方网站上提前公布,并提供基于不同时区的转换工具以便参赛者了解具体开赛时刻。 对于Codeforces上的赛事而言,如果一场名为M1的比赛被计划举行,则它的原始时间一般按照UTC(协调世界时)设定。为了得知该场比赛在UTC+8时区的确切开始时间,可以遵循以下逻辑: - 前往Codeforces官网并定位至对应比赛页面。 - 查看比赛所标注的标准UTC起始时间。 - 将此标准时间加上8小时来获取对应的北京时间(即UTC+8)。 由于目前缺乏具体的官方公告链接或者确切日期作为依据,无法直接给出Codeforces M1比赛于UTC+8下的实际发生时段。建议定期访问Codeforces平台查看最新动态更新以及确认最终版程表信息。 ```python from datetime import timedelta, datetime def convert_utc_to_bj(utc_time_str): utc_format = "%Y-%m-%dT%H:%M:%SZ" bj_offset = timedelta(hours=8) try: # 解析UTC时间为datetime对象 utc_datetime = datetime.strptime(utc_time_str, utc_format) # 转换为北京时区时间 beijing_time = utc_datetime + bj_offset return beijing_time.strftime("%Y-%m-%d %H:%M:%S") except ValueError as e: return f"错误:{e}" # 示例输入假设某场Codeforces比赛定于特定UTC时间 example_utc_start = "2024-12-05T17:35:00Z" converted_time = convert_utc_to_bj(example_utc_start) print(f"Codeforces比赛在北京时间下将是:{converted_time}") ```
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值