首页 > 代码库 > hdu 4884 TIANKENG’s rice shop(模拟)
hdu 4884 TIANKENG’s rice shop(模拟)
# 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; }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。