记录编号 549439 评测结果 AAAAAAAAAA
题目名称 [NOIP 2007]字符串的展开 最终得分 100
用户昵称 Gravatar夜莺 是否通过 通过
代码语言 C++ 运行时间 0.000 s
提交时间 2020-02-11 13:47:17 内存使用 0.00 MiB
显示代码纯文本
#include<cstdio>
#include<cstring>
using namespace std;
short int p1,p2,p3;
char need[100];
void Cout(int wz){
	int last=need[wz-1],next=need[wz+1];
	bool pd=false;
	if(need[wz-1]>='0'&&need[wz-1]<='9')
		pd=true;
	if(need[wz+1]=='-'||need[wz-1]=='-'){
		printf("-");
		return;
	}
	if(last>=next||(last>='0'&&last<='9'&&next>='a'&&next<='z')||(last>='a'&&last<='z'&&next>='0'&&next<='9'))
		printf("-");
	else{
		if(last==next-1);
		else{
			if(p3&1)
				for(int i=last+1;i<next;i++){
					for(int j=1;j<=p2;j++){
						if(p1==3)
							printf("*");
						else{
							if(p1&1)
								printf("%c",char(i));
							else{
								if(pd)
									printf("%c",char(i));
								else printf("%c",char(i)-32);
							}
						}
					}
				}
			else
				for(int i=next-1;i>last;i--){
					for(int j=1;j<=p2;j++){
						if(p1==3)
							printf("*");
						else{
							if(p1&1)
								printf("%c",char(i));
							else{
								if(pd)
									printf("%c",char(i));
								else printf("%c",char(i)-32);
							}
						}
					}
				}
		}
	}
}
int Main(){
	freopen("expand.in","r",stdin);
	freopen("expand.out","w",stdout);
	scanf("%hd%hd%hd\n%s",&p1,&p2,&p3,need);
	int t=0;
	while(need[t]=='-')
		printf("%c",need[t++]);
	for(int i=t;i<strlen(need);i++){
		if(need[i]=='-'){
			Cout(i);
			continue;
		}
			if(need[i]!=64)
				printf("%c",need[i]);
	}
	return 0; 
}
int uu=Main();
int main(){;}