比赛 20130725暑期B班1测 评测结果 AAAAAA
题目名称 黑叔 最终得分 100
用户昵称 Makazeu 运行时间 0.034 s
代码语言 C++ 内存使用 0.62 MiB
提交时间 2012-07-18 11:14:14
显示代码纯文本
#include<fstream>
#include<cstring>
#include<cstdlib>
using namespace std;
struct yu
{
	int x,y;
	char st[21];
}s[10000];
int cmp( const void *a,const void *b)
{
	struct yu *c=(struct yu *)a;
	struct yu *d=(struct yu *)b;
	if(c->x != d->x)
		return c->x - d->x;
	else 
		return strcmp( c->st, d->st);
}
int main(void)
{
	ifstream fin("hey.in");
	ofstream fout("hey.out");
	int n,t;
	int i;
	fin>>n;
	for(i=0;i<n;i++)
	{
		fin>>s[i].x;
		fin>>s[i].st;
		fin>>s[i].y;
	}
	qsort(s,n,sizeof(s[0]),cmp);
	t=s[0].x;
	for(i=0;i<n;i++)
	{
		if(s[i].x<=t)
		{
			fout<<s[i].st<<" went out at time "<<t<<endl;
			t+=s[i].y;
		}
		else 
		{
			fout<<s[i].st<<" went out at time "<<s[i].x<<endl;
			t=s[i].y+s[i].x;
		}
	}
	fin.close();
	fout.close();
	return 0;
}