记录编号 41969 评测结果 AAAAA
题目名称 [焦作一中2012] 轮盘游戏 最终得分 100
用户昵称 Gravatarfeng 是否通过 通过
代码语言 C++ 运行时间 0.002 s
提交时间 2012-09-08 09:56:22 内存使用 3.13 MiB
显示代码纯文本
#include<cstdio>
#include<cstring>
#include<iostream>
using namespace std;
int n,m,i,o;
char f[50];
int main()
{
	freopen("wheel.in","r",stdin);
	freopen("wheel.out","w",stdout);
	while (scanf("%d%d\n",&n,&m)!=EOF){
		char ch;
		int x;
		bool flag=true;
		memset(f,0,sizeof(f));
		int o=0;
		for (i=1;i<=m;i++){
			scanf("%d %c\n",&x,&ch);
			x=x%n;
			o+=x;
			o%=n;
			if (flag)
			for(int j=0;j<n;j++)
				if (f[j]==ch && j!=o){
					printf("!\n");
					flag=false;
				}
			if (flag){
			if (f[o]==0){
				f[o]=ch;
			}else if (f[o]!=ch && flag){
				printf("!\n");
				flag=false;
			}
			}
		}
		if (flag){
		for (i=o;i>=0;i--)
		{
			if (f[i]!=0)
			printf("%c",f[i]);else printf("?");
		}
		for (i=n-1;i>o;i--)
		{
			if (f[i]!=0)
			printf("%c",f[i]);else printf("?");
		}
		printf("\n");
		}
	}
	return 0;
}