codeforce div2 620 C. Air Conditioner

C. Air Conditioner
time limit per test1 second
memory limit per test256 megabytes
inputstandard input
outputstandard output
Gildong owns a bulgogi restaurant. The restaurant has a lot of customers, so many of them like to make a reservation before visiting it.

Gildong tries so hard to satisfy the customers that he even memorized all customers’ preferred temperature ranges! Looking through the reservation list, he wants to satisfy all customers by controlling the temperature of the restaurant.

The restaurant has an air conditioner that has 3 states: off, heating, and cooling. When it’s off, the restaurant’s temperature remains the same. When it’s heating, the temperature increases by 1 in one minute. Lastly, when it’s cooling, the temperature decreases by 1 in one minute. Gildong can change the state as many times as he wants, at any integer minutes. The air conditioner is off initially.

Each customer is characterized by three values: ti — the time (in minutes) when the i-th customer visits the restaurant, li — the lower bound of their preferred temperature range, and hi — the upper bound of their preferred temperature range.

A customer is satisfied if the temperature is within the preferred range at the instant they visit the restaurant. Formally, the i-th customer is satisfied if and only if the temperature is between li and hi (inclusive) in the ti-th minute.

Given the initial temperature, the list of reserved customers’ visit times and their preferred temperature ranges, you’re going to help him find if it’s possible to satisfy all customers.

Input
Each test contains one or more test cases. The first line contains the number of test cases q (1≤q≤500). Description of the test cases follows.

The first line of each test case contains two integers n and m (1≤n≤100, −109≤m≤109), where n is the number of reserved customers and m is the initial temperature of the restaurant.

Next, n lines follow. The i-th line of them contains three integers ti, li, and hi (1≤ti≤109, −109≤li≤hi≤109), where ti is the time when the i-th customer visits, li is the lower bound of their preferred temperature range, and hi is the upper bound of their preferred temperature range. The preferred temperature ranges are inclusive.

The customers are given in non-decreasing order of their visit time, and the current time is 0.

Output
For each test case, print “YES” if it is possible to satisfy all customers. Otherwise, print “NO”.

You can print each letter in any case (upper or lower).

Example

inputCopy
4
3 0
5 1 2
7 3 5
10 -1 0
2 12
5 7 10
10 16 20
3 -100
100 0 0
100 -50 50
200 100 100
1 100
99 -100 0
outputCopy
YES
NO
YES
NO
Note
In the first case, Gildong can control the air conditioner to satisfy all customers in the following way:

At 0-th minute, change the state to heating (the temperature is 0).
At 2-nd minute, change the state to off (the temperature is 2).
At 5-th minute, change the state to heating (the temperature is 2, the 1-st customer is satisfied).
At 6-th minute, change the state to off (the temperature is 3).
At 7-th minute, change the state to cooling (the temperature is 3, the 2-nd customer is satisfied).
At 10-th minute, the temperature will be 0, which satisfies the last customer.
In the third case, Gildong can change the state to heating at 0-th minute and leave it be. Then all customers will be satisfied. Note that the 1-st customer’s visit time equals the 2-nd customer’s visit time.

In the second and the fourth case, Gildong has to make at least one customer unsatisfied.

题目:空调可以控制温度,不管升温还是降温都是每分钟1,对于n个客人每人都有一个自己可以接受的温度范围,问可不可以让所有顾客都满意。

分析题目,我们可以控制空调的温度,所以饭点的温度始终有一个范围【m-t,m+t】用m1 m2表示即可在客人来的过程中,我们要保证对每一客人,我们的范围最后要被客人接受范围包括,并保证一定有一个温度可以满足客人,比如能做到的最低比客人接受的最高更低,或能达到的最高达到了客人所接受的最低,保证可以满足客人需求,在通过max和min函数保证舍去达不到的部分,这样我们就的到了一个我们所能接受的温度范围,去服务与下一波客人的选择。

#include<bits/stdc++.h>
using namespace std;
int t[100], low[100], high[100];
int main()
{
	int q;
	cin>>q;
	while(q--)
	{
		int n,m;
		cin>>n>>m;
		 for(int i=1;i<=n;i++)		 
		 	cin >> t[i] >> low[i] >> high[i];
		 	int w=0,flag=0;
		 	int m1=m,m2=m;
		 	for(int i=1;i<=n;i++)
		 	{
		 		m1-=t[i]-w;
		 		m2+=t[i]-w;
		 		if(m1>high[i]||m2<low[i])
		 		{
		 			flag=1;
		 			break;
				 }
		 		m1=max(m1,low[i]);
		 		m2=min(m2,high[i]);
		 		w=t[i];
			 }
		 	if(flag==1)
			 printf("NO\n");
			 else printf("YES\n");
	}
return 0;
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值