码迷,mamicode.com
首页 > 其他好文 > 详细

hdu 4884 TIANKENG’s rice shop(模拟)

时间:2014-07-30 14:45:53      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:hdu4884   模拟   bestcoder   

# include <cstdio>
# include <algorithm>
# include <cstring>
# include <cstdlib>
using namespace std;
int max(int a,int b)
{
	return a>b?a:b;
}
int main()
{
	int T,n,t,k,m,i,hh,min,id,num,x;
	int last[1010];//最后一次开始炒饭的时间
	int cot[1010];//剩下的炒饭
	scanf("%d",&T);
    while(T--)
	{
		scanf("%d%d%d%d",&n,&t,&k,&m);
		memset(cot,0,sizeof(cot));
		int cur=0;
		while(m--)
		{
			scanf("%d:%d%d%d",&hh,&min,&id,&num);
			hh=hh*60+min;
			if(cot[id]>=num&&last[id]>=hh)
			{
				cot[id]-=num;
				printf("%02d:%02d\n",((last[id]+t)/60)%24,(last[id]+t)%60);
				continue;
			}
			if(cot[id]&&last[id]>=hh)
			{
				num-=cot[id];
			}
			if(num%k)//还需要抄几次
				x=num/k+1;
			else
				x=num/k;
			cur=max(cur,hh)+t*x;
			printf("%02d:%02d\n",(cur/60)%24,cur%60);
			cot[id]=x*k-num;
			last[id]=cur-t;
		}
		if(T)
			puts("");
	}
	return 0;
}

hdu 4884 TIANKENG’s rice shop(模拟),布布扣,bubuko.com

hdu 4884 TIANKENG’s rice shop(模拟)

标签:hdu4884   模拟   bestcoder   

原文地址:http://blog.csdn.net/lp_opai/article/details/38299941

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!