http://ybt.ssoier.cn:8088/problem_show.php?pid=1360 1 #include<bits/stdc++.h> 2 using namespace std; 3 int n, a, b; 4 int k[205]; 5 bool vis[205]; 6 struct node{ 7 int x, s; 8 }; 9 node que[205]; 10 int f, r; 11 int ans=-1; 12 void lift(int nx, int fs...
简介:1360:奇怪的电梯(lift) 时间限制: 1000 ms内存限制: 65536 KB 【题目描述】 大楼的每一层楼都可以停电梯,而且第i层楼(1≤i≤N)上有一个数字Ki(0≤=Ki≤=N)。电梯只有四个按钮:开,关,上,下。上下的层数等于当前楼层上的那个数字。当然,如果不能满足要求,相应的按钮就会失灵。例如:3 3 1 2 5代...
1360:奇怪的电梯(lift) 奇怪的电梯 注意起点等于终点的情况! 1 #include<iostream> 2 #include<cstdio> 3 #include<queue> 4 using namespace std; 5 const int N=205; 6 int n,a[N],b[N]; 7 queue<int> q; 8 void cnt(){ 9 while(!q.empty()){ 10 int p=q.front(); 11 q.pop();...
/* 第5课奇怪的电梯(lift)1360:奇怪的电梯(lift)01 http://ybt.ssoier.cn:8088/problem_show.php?pid=1360 */ #include<bits/stdc++.h> using namespace std;int que[300][2];int num[210];int main(void){ int n,a,b;int head,tail;int tempx,tempy,nx;int flag[210];cin>>n>>a>>b;f...
81、1360:奇怪的电梯(lift)-2020.02.23a NOIP 少儿编程 信奥2020-03-04 上传大小:62KB 所需:44积分/C币 Lift-Question.zip_java电梯_java电梯模拟_电梯 这是一个关于电梯模拟的问题,非常值得我们去思考,去研究。 上传者:weixin_42651887时间:2022-09-19 ...
1360:奇怪的电梯(lift) 时间限制: 1000 ms 内存限制: 65536 KB 【题目描述】 大楼的每一层楼都可以停电梯,而且第i层楼(1≤i≤N)上有一个数字Ki(0≤=Ki≤=N)。电梯只有四个按钮:开,关,上,下。上下的层数等于当前楼层上的那个数字。当然,如果不能满足要求,相应的按钮就会失灵。例如:3 3 1 2 5代表...
1360:奇怪的电梯(lift) 注意起点等于终点的情况! 1 #include<iostream> 2 #include<cstdio> 3 #include<queue> 4 using namespace std; 5 const int N=205; 6 int n,a[N],b[N]; 7 queue<int> q; 8 void cnt(){ 9 while(!q.empty()){...
51CTO博客已为您找到关于1360:奇怪的电梯(lift)的相关内容,包含IT学习相关文档代码介绍、相关教程视频课程,以及1360:奇怪的电梯(lift)问答内容。更多1360:奇怪的电梯(lift)相关解答可以来51CTO博客参与分享和学习,帮助广大IT技术人实现成长和进步。
1360 奇怪的电梯(lift) #include<bits/stdc++.h> using namespace std; struct dt{ int cs,bs; }que[210]; int n,a,b,ans=-1; int yd[205]; int book[205]; int f,r; bool fs=false; void move(int x,int y){ if(x>=0 && x<=200 && book[x]==0){ book[x]=1; r++; que[r...
信息奥赛一本通http://ybt.ssoier.cn:8088/problem_show.php?pid=1360 题目: 1360:奇怪的电梯(lift) 时间限制: 1000 ms 内存限制: 65536 KB 提交数: 4824 通过数: 2058 【题目描述】 大楼的每一层楼都可以停电梯,而且第i层楼(1≤i≤N)上有一个数字Ki(0≤=Ki≤=N)。电梯只有四个按钮:开,关,上,...