题解 3151: 蓝桥杯2023年第十四届省赛真题-飞机降落

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

DFS(深度优先遍历)

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> #include<vector> using namespace std; int flag=0; class……

用python写个bfs

摘要:解题思路:注意事项:参考代码:#飞机降落,bfs枚举T = int(input())sj = [[(0,0,0)] for _ in range(T)]for i in range(T):    n ……

飞机降落(仔细阅读代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int T;int z=0;int str[10];         //飞机是否降落struct code{ int t;      ……