比赛 20111021 评测结果 EEEEEEEEEE
题目名称 掷骰子 最终得分 0
用户昵称 风华正茂 运行时间 0.000 s
代码语言 C++ 内存使用 0.00 MiB
提交时间 2011-10-21 20:54:05
显示代码纯文本
#include<fstream>
using namespace std;
int tot=0,a[1512769][8],b[20][2],l,p,N,S,E,queding,pro[5]={1,2,3,4,5},c[20],chang=0;
char s[35];
int strlen(char *str1)
{ 
	int m=0;
	for(int i=0;str1[i]!='\0';i++)
	{
		m++;
	}
	return m;
}
void pailie(int q,int jin)
{
	int i,j;
	for(i=0;i<chang;i++)
	{
		if(i!=jin)
		{
			a[tot][q]=c[i];
		}
		pailie(q--,i);
		tot++;
	}
}
void suiji(int len)
{
	int i,j;
}
int main()
{
	ifstream cin("cowyotz.in");
	ofstream cout("cowyotz.out");
	int i,j;
	cin>>N>>S>>E;
	for(i=0;i<E;i++)
	{
		cin>>s;
		l=strlen(s);
		p=0;
		for(j=0;i<l;j++)
		{
			if(s[j]=='x')
			{
				p++;
				if(s[j-2]>='0'&&s[j-2]<='9')
				{
					b[p][0]=10*s[j-2]+s[j-1];
					if(s[j+2]>='0'&&s[j+2]<='9')
						b[p][1]=10*s[j+1]+s[j+2];
					else
						b[p][1]=s[j+1];
				}
				else
				{
					b[p][0]=s[j-1];
					if(s[j+2]>='0'&&s[j+2]<='9')
						b[p][1]=10*s[j+1]+s[j+2];
					else
						b[p][1]=s[j+1];
				}
			}
		}
		for(int x=0;x<p;x++)
		{
			for(int y=x;y<p;y++)
			{
				if(b[x][1]>b[y][1])
				{
					int temp;
					temp=b[x][1];
					b[x][1]=b[y][1];
					b[y][1]=temp;
					temp=b[x][0];
					b[x][0]=b[y][0];
					b[y][0]=temp;
				}
			}
		}
		for(int x=0;x<p;x++)
		{
			queding=queding+b[x][0];
		}
		for(int x=0;x<p;x++)
		{
			for(int y=0;y<b[x][0];y++)
			{
				c[chang]=b[x][1];
				chang++;
			}
		}
		suiji(p);
	}
	i=63;
	cout<<i<<endl;
	return 0;
}