记录编号 |
118211 |
评测结果 |
AAAAAAAAAAAA |
题目名称 |
售票系统 |
最终得分 |
100 |
用户昵称 |
HouJikan |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.145 s |
提交时间 |
2014-09-04 21:19:13 |
内存使用 |
1.55 MiB |
显示代码纯文本
#include <iostream>
#include <cstring>
#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <algorithm>
#include <queue>
#include <stack>
#include <map>
#include <set>
#include <list>
#include <vector>
#include <ctime>
#include <iterator>
#include <functional>
#define pritnf printf
#define scafn scanf
#define For(i,j,k) for(int i=(j);i<=(k);(i)++)
using namespace std;
typedef long long LL;
typedef unsigned int Uint;
const int INF=0x7ffffff;
//==============struct declaration==============
//==============var declaration=================
const int MAXN=60000;
int addv[MAXN*3+100];
int maxv[MAXN*3+100];//表示已经预定的座位数字
int c,s,r;//city,seat,query
#define y1 y
int y1,y2;
int n;
//==============function declaration============
int query(int o,int l,int r,int add);
void update(int o,int l,int r);
void maintain(int o,int l,int r);
//==============main code=======================
int main()
{
string FileName="railway";//程序名
string FloderName="COGS";//文件夹名
freopen((FileName+".in").c_str(),"r",stdin);
freopen((FileName+".out").c_str(),"w",stdout);
#ifdef DEBUG
system(("cp C:\\Users\\Administrator\\Desktop\\"+FloderName+"\\standard.cpp C:\\Users\\Administrator\\Desktop\\"+FloderName+"\\submit.txt").c_str());
clock_t Start_Time=clock();
#endif
scanf("%d%d%d",&c,&s,&r);
memset(addv,0,sizeof(addv));
memset(maxv,0,sizeof(maxv));
For(i,1,r)
{
scanf("%d%d%d",&y1,&y2,&n);
y2--;
if (y1>y2)
{
printf("YES\n");
continue;
}
int ans=query(1,1,c,0);
if (s-ans>=n)
{
update(1,1,c);
printf("YES\n");
}
else
printf("NO\n");
}
#ifdef DEBUG
clock_t End_Time=clock();
cout<<endl<<endl<<"Time Used: "<<double(End_Time-Start_Time)/CLOCKS_PER_SEC<<endl;
#endif
return 0;
}
//================fuction code====================
int query(int o,int l,int r,int add)
{
int lc=o*2;
int rc=o*2+1;
int m=(l+r)>>1;
if (y1<=l&&r<=y2)
return maxv[o]+add;
int res=0;
if (m>=y1)
res=max(res,query(lc,l,m,add+addv[o]));
if (m<y2)
res=max(res,query(rc,m+1,r,add+addv[o]));
return res;
}
void maintain(int o,int l,int r)
{
if (l==r)
maxv[o]=addv[o];
else
{
int lc=o*2;
int rc=o*2+1;
maxv[o]=max(maxv[lc],maxv[rc])+addv[o];
}
return;
}
void update(int o,int l,int r)//y1,y2 +n
{
int lc=o*2;
int rc=o*2+1;
int m=(l+r)>>1;
if (y1<=l&&r<=y2)
{
addv[o]+=n;
maxv[o]+=n;
return;
}
if (m>=y1)
update(lc,l,m);
if (m<y2)
update(rc,m+1,r);
maintain(o,l,r);
}