字符串展开
题目大意:
一串缩写的字符串,将它缩写前的输出来(详情见原题)
原题
解题思路:
直接模拟每一个字符即可
代码:
#include<cstdio>
#include<string>
#include<cstring>
#include<iostream>
using namespace std;
int p1,p2,p3,l;
string str;
int main()
{scanf("%d %d %d",&p1,&p2,&p3);cin>>str;l=str.size();str=' '+str;for (int i=1;i<=l;++i){if (str[i]=='-')//判断是否为神略部分{if (str[i-1]>='0'&&str[i-1]<='9'&&str[i+1]>str[i-1]&&str[i+1]<='9')//数字{if (p3==1)//无需倒叙for (int j=str[i-1]+1;j<str[i+1];++j)//所有省略的字符for (int k=1;k<=p2;++k)//输出的个数if (p1==3) putchar('*');//判断是否要改为“*”else putchar(j);else//要倒序for (int j=str[i+1]-1;j>str[i-1];--j)//反过来for (int k=1;k<=p2;++k)//同上if (p1==3) putchar('*');else putchar(j);continue;}if (str[i-1]>='a'&&str[i-1]<='z'&&str[i+1]>str[i-1]&&str[i+1]<='z'){if (p3==1)for (int j=str[i-1]+1;j<str[i+1];++j)for (int k=1;k<=p2;++k)if (p1==3) putchar('*');else if (p1==2) putchar(j-32);else putchar(j);elsefor (int j=str[i+1]-1;j>str[i-1];--j)for (int k=1;k<=p2;++k)if (p1==3) putchar('*');else if (p1==2) putchar(j-32);//大写else putchar(j);continue;}}putchar(str[i]);//不是省略的就直接输出}
}