CF 999B. Reversing Encryption模拟/string reverse

Posted roni-i

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CF 999B. Reversing Encryption模拟/string reverse相关的知识,希望对你有一定的参考价值。

【链接】:CF
【代码】:

#include<bits/stdc++.h>
#define PI acos(-1.0)
#define pb push_back
#define F first
#define S second
#define debug puts
#define setp cout << fixed << setprecision(3)
#define FAST_IO ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);
using namespace std;
typedef long long ll;
const int N=3e5+5;
const int MOD=1e9+7;
const ll INF=1e18+8;
int n,k;
int a[N];
/*
给一个长度为n的字符串,经过他的因子个数的几次翻转,让你求最初的字符串。
*/
int main()
{
    FAST_IO
    while(cin>>n)
    {
        string s;
        cin>>s;
        for(int i=2;i<=n;i++)
        {
            if(n%i==0)
                reverse(s.begin(),s.begin()+i);
        }
        cout<<s<<endl;
    }
}
/*
10
rocesfedoc
codeforces

16
plmaetwoxesisiht
thisisexampletwo

*/

以上是关于CF 999B. Reversing Encryption模拟/string reverse的主要内容,如果未能解决你的问题,请参考以下文章

CF 999 div3

强连通图缩点——cf999E

[CF999E]Reachability from the Capital

Reversing.Kr writeup

CF 999E Reachability from the Capital

CF999E Reachability from the Capital