程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> csu 1458: Booking (開的房間數量)

csu 1458: Booking (開的房間數量)

編輯:C++入門知識

1458: Booking

Time Limit: 3 Sec Memory Limit: 128 MB
Submit: 116 Solved: 27
[Submit][Status][Web Board]

Description

\

Input

\

Output

\

Sample Input

4
2 120
1 2013-07-01 15:59 2013-07-08 16:30
2 2013-07-08 17:30 2013-07-15 12:00
3 60
65 2013-07-08 14:30 2013-07-08 16:00
32 2013-07-01 16:00 2013-07-15 12:00
91 2013-07-01 16:00 2013-07-08 15:00
2 360
a7 2016-02-21 14:00 2016-02-28 21:00
xx 2016-03-01 01:00 2016-03-02 12:57
2 60
a9 2016-02-21 14:00 2016-02-28 11:00
a8 2016-02-28 12:00 2016-03-11 21:00

Sample Output

2
3
1
1
題意:開房的預定時間和離開時間,下一個要重新開一間那麼這次預定時間必須要在前面開房的離開時+打掃時間之內。
#include
#include
#include
using namespace std;
typedef struct nnn
{
    int st;
    int et;
}node;
node book[5005];
int cmp(node a,node b)
{
    if(a.st==b.st)
    return a.et

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved