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

NYOJ 168 房间安排

时间:2015-07-03 22:05:21      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:

#include<stdio.h>
#include<string.h>
#include<iostream>
#include<algorithm>
using namespace std;
int cmp(int a,int b)
{
  return a>b;
}
int main()
{
  int a[200],i;
  int num,geshu,day,lasttime,endtime;
  scanf("%d",&num);
  while(num--)
  {
    int t;
    scanf("%d",&t);
    memset(a,0,sizeof(a));
    while(t--)
    {
      scanf("%d%d%d",&geshu,&day,&lasttime);
      endtime=day+lasttime;
      for(i=day;i<endtime;i++)
      {
        a[i]+=geshu;
      }
    }
    sort(a,a+190,cmp);
    printf("%d\n",a[0]);
  }
}

NYOJ 168 房间安排

标签:

原文地址:http://www.cnblogs.com/mycapple-zgs-111411/p/4619717.html

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