当前位置:   article > 正文

[蓝桥杯]真题讲解:飞机降落(DFS枚举)_蓝桥杯飞机降落

蓝桥杯飞机降落

[蓝桥杯]真题讲解:飞机降落(DFS枚举)

一、视频讲解

视频讲解
在这里插入图片描述

二、暴力代码(也是正解代码)

//飞机降落: 暴力枚举DFS
#include<bits/stdc++.h>
#define int long long
using namespace std;
const int N = 10 + 20;

struct plane{
	int t, d, l;
}p[N];

bool st[N];//判断当前飞机是否已经降落

int n;//飞机个数。

//u表示已经有U架飞机成功降落了。
//time表示当前的时间,前一架飞机落地的时间。
bool dfs(int u, int time)
{
	if(u >= n)
		return true;

	//考虑第(u + 1)架飞机谁落。
	for(int i = 0; i < n; i ++)
	{
		if(!st[i])
		{
			st[i] = true;
			if(p[i].t + p[i].d < time)
			{
				//回溯,回溯到DFS之前的状态。
				st[i] = false;
				return false;
			}
			
			int t = max(time, p[i].t) + p[i].l;
			if(dfs(u + 1, t))
				return true;
			
			//回溯,回溯到DFS之前的状态。
			st[i] = false;
		}
	}
	return false;
}

void solve()
{
	cin >> n;
	for(int i = 0; i < n; i ++)
		cin >> p[i].t >> p[i].d >> p[i].l;

	if(dfs(0, 0))
		cout << "YES" << endl;
	else
		cout << "NO" << endl;
		
	for(int i = 0; i < n; i ++)
	    st[i] = false;
}	

signed main()
{
	ios::sync_with_stdio(0);
	cin.tie(0);
	int t = 1;
	cin >> t;
	while(t--)
	solve();
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/436219
推荐阅读
相关标签
  

闽ICP备14008679号