1200 To and Fro 水题 / 模拟
Posted 幽殇默
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1200 To and Fro 水题 / 模拟相关的知识,希望对你有一定的参考价值。
http://acm.hdu.edu.cn/showproblem.php?pid=1200
加密过程是这样的,例要加密的信息是:
There’s no place like home on a snowy night
代码如下:
#include<cstdio>
#include<iostream>
#include<algorithm>
#include<string>
using namespace std;
int main(void)
{
int n; string ss;
while(cin>>n,n!=0)
{
cin>>ss;
string ans[1000];
int k=0;
for(int i=0;i<ss.size();i++)
{
ans[k]+=ss[i];//将其分割成一小块的
if((i+1)%n==0) k++;
}
for(int i=0;i<k;i++)
{
if(i%2!=0) reverse(ans[i].begin(),ans[i].end());//奇数行翻转
}
for(int i=0;i<n;i++)
{
for(int j=0;j<k;j++)
{
cout<<ans[j][i];
}
}
cout<<endl;
}
return 0;
}
代码减化
#include<cstdio>
#include<iostream>
#include<algorithm>
#include<string>
using namespace std;
int main(void)
{
int n; string ss;
while(cin>>n,n!=0)
{
cin>>ss;
string ans[1000];
int k=0;
for(int i=0;i<ss.size();i++)
{
ans[k]+=ss[i];//将其分割成一小块的
if((i+1)%n==0)
{
if(k%2!=0) reverse(ans[k].begin(),ans[k].end());//奇数行翻转
k++;
}
}
for(int i=0;i<n;i++)
{
for(int j=0;j<k;j++)
{
cout<<ans[j][i];
}
}
cout<<endl;
}
return 0;
}
以上是关于1200 To and Fro 水题 / 模拟的主要内容,如果未能解决你的问题,请参考以下文章
[sicily online]1007. To and Fro
CodeForces 731B Coupons and Discounts (水题模拟)
B. Xenia and Ringroad1000 / 水题 模拟
Codeforces 1082B Vova and Trophies 模拟,水题,坑 B