• Reversing Encryption(模拟水题)


    A string ss of length nn can be encrypted(加密) by the following algorithm:

    • iterate(迭代) over all divisors(除数) of nn in decreasing order (i.e. from nn to 11),
    • for each divisor dd, reverse the substring s[1d]s[1…d] (i.e. the substring which starts at position 11 and ends at position dd).

    For example, the above algorithm applied to the string ss="codeforces" leads to the following changes: "codeforces"  "secrofedoc"  "orcesfedoc" →"rocesfedoc"  "rocesfedoc" (obviously, the last reverse operation doesn't change the string because d=1d=1).

    You are given the encrypted string tt. Your task is to decrypt this string, i.e., to find a string ss such that the above algorithm results in string tt. It can be proven that this string ss always exists and is unique.

    Input

    The first line of input consists of a single integer nn (1n1001≤n≤100) — the length of the string tt. The second line of input consists of the string tt. The length of tt is nn, and it consists only of lowercase Latin letters.

    Output

    Print a string ss such that the above algorithm results in tt.

    Examples

    Input
    10 
    rocesfedoc
    Output
    codeforces
    Input
    16 
    plmaetwoxesisiht
    Output
    thisisexampletwo
    Input
    1 z
    Output
    z

    Note

    The first example is described in the problem statement.

     

    题目意思:对所给的字符串进行加密得到一新的字符串,加密方式是从n的最小因子开始,反转从开始到因子的字符串。

    之前做这道题的时候理解错意思了,一直以为是一半一半的反转字符串,很是可惜,没有做出来

    #include<stdio.h>
    #include<string.h>
    #include<algorithm>
    using namespace std;
    int main()
    {
        int n,i;
        char s[110];
        scanf("%d",&n);
        getchar();
        scanf("%s",&s);
        for(i=1;i<=n;i++)
        {
            if(n%i==0)
            {
                reverse(s,s+i);
            }
        }
        printf("%s
    ",s);
        return 0;
    }

     这里有我之前一篇关于字符串反转函数的博客

     1 #include<stdio.h>
     2 #include<string.h>
     3 #include<algorithm>
     4 using namespace std;
     5 int main()
     6 {
     7     int n,i,j,count;
     8     char s[110];
     9     int a[110];
    10     scanf("%d",&n);
    11     getchar();
    12     scanf("%s",&s);
    13     count=0;
    14     for(i=1;i<=n;i++)
    15     {
    16         if(n%i==0)
    17         {
    18             a[count++]=i;///记录n因子
    19         }
    20     }
    21     for(i=0;i<count;i++)
    22     {
    23         for(j=0;j<a[i]/2;j++)
    24         {
    25             swap(s[j],s[a[i]-j-1]);
    26         }
    27     }
    28     printf("%s
    ",s);
    29     return 0;
    30 }
  • 相关阅读:
    Flex动画
    八大排序算法
    Android switch语句“case expressions must be constant expressions”
    MySQL修改root密码的多种方法
    Android中ListView控件onItemClick事件中获取listView传递的数据
    超详细Android接入支付宝支付实现,有图有真相
    Android蓝牙开发---与蓝牙模块进行通信
    Leecode no.19 删除链表的倒数第 N 个结点
    玩转java静态/动态代理
    Leecode no.198. 打家劫舍
  • 原文地址:https://www.cnblogs.com/wkfvawl/p/9343465.html
Copyright © 2020-2023  润新知