标签: dfs

1 篇文章

P9241 [蓝桥杯 2023 省 B] 飞机降落
题目描述 题解 这道题数据范围很小,所以可以用搜索做。具体题解看下方代码。 代码 带注释版代码 #include<iostream> #include<cstring> using namespace std; const int N=10; struct Plane{ // 存每个飞机的t,d,l int t; int d; int …