杭电1129 Do the Untwist

杭电1129 Do the Untwist
      杭电1129 题目很长,读了下来,其实意思就是把输入的字符串按规则转化为数组c中的元素,让你根据公式c[i] = (p[k*i mod n] - i) mod 28得到p中元素的值,我们可以把这个公式化简一下,就可得到对应的公式 c[i]=(p[k*i mod n])mod28-i mod28;所以p[k*i mod n]=(c[i] + i mod 28)mod 28;根据这个公式的到p数组中元素的值,再一次把数组转化为相应的字符输出就可以了。
Ac代码
#include<iostream>
using namespace std;
int main()
{
    int p[500], c[500];
    char str[500];
    int n;
    while (cin>>n)
    {
        memset(str, 0, sizeof(str));
        if (n == 0)
            break;
        cin >> str;
        int len = strlen(str);
        for (int i = 0; i < len; i++)
        {
            if (str[i] == '_')
            {
                c[i] = 0;
            }
            else if (str[i] == '.')
            {
                c[i] = 27;
            }
            else
            {
                c[i] = str[i] - 'a' + 1;
            }
        }
        for (int i = 0; i < len; i++)
        {
            p[n*i%len] = (c[i] + i % 28)%28;
        }
        for (int i = 0; i < len; i++)
        {
            if (p[i] == 0)
            {
                str[i] = '_';
            }
            else if (p[i] == 27)
            {
                str[i] = '.';
            }
            else
            {
                str[i] = p[i] - 1 + 'a';
            }
        }
        str[len] = '\0';
        cout << str << endl;
    }
return 0;
}


评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值