P1079 [NOIP2012 提高组] Vigenère 密码 [模拟]

Posted 幽殇默

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了P1079 [NOIP2012 提高组] Vigenère 密码 [模拟]相关的知识,希望对你有一定的参考价值。

在这里插入图片描述
https://www.luogu.com.cn/problem/P1079
在这里插入图片描述

#include<cstdio>
#include<iostream>
#include<string>
#include<cstring>
using namespace std;
int main(void)
{
    string s,key; cin>>key>>s;
    int k=0;
    for(int i=0;i<s.size();i++)
    {
        int temp=toupper(s[i])-'A'-(toupper(key[k++])-'A');
        temp=(temp+26)%26;
        if(k==key.size()) k=0;
        if(s[i]>='a')
        cout<<char('a'+temp);
        else cout<<char('A'+temp);
    }
    return 0;
}

以上是关于P1079 [NOIP2012 提高组] Vigenère 密码 [模拟]的主要内容,如果未能解决你的问题,请参考以下文章

noip2012提高组复赛的所有知识点,要详细精确到每种算法。

[NOIP2012 提高组] 疫情控制

NOIP提高组2012 借教室

刷题总结——疫情控制(NOIP2012提高组)

noip2012——提高组——借教室

NOIP2012提高组