A. The Fair Nut and Elevator time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output A. The Fair ...
分类:
其他好文 时间:
2018-12-25 22:55:16
阅读次数:
213
A. The Fair Nut and Elevator Solved. 签. 1 #include <bits/stdc++.h> 2 using namespace std; 3 4 #define N 110 5 int n, a[N]; 6 7 int main() 8 { 9 while ...
分类:
其他好文 时间:
2018-12-12 14:54:54
阅读次数:
183
【题目】 A. Elevator or Stairs? 【描述】 Masha要从第x层楼去第y层楼找Egor,可以选择爬楼梯或者坐直升电梯。已知爬楼梯每层需要时间t1;坐直升电梯每层需要时间t2,直升电梯开门或者关门一次需要时间t3,当前直升电梯在第z层楼,直升电梯门是在关闭状态的。如果爬楼梯总时间 ...
分类:
其他好文 时间:
2018-10-19 14:20:00
阅读次数:
288
" 戳我进原题" Elevator Time Limit: 4000MS Memory Limit: 65536K Total Submissions: 1572 Accepted: 424 Case Time Limit: 2000MS Description Edward works as an ...
分类:
其他好文 时间:
2018-09-25 21:53:18
阅读次数:
217
The highest building in our city has only one elevator. A request list is made up with N positive numbers. The numbers denote at which floors the elev ...
分类:
其他好文 时间:
2018-09-03 13:44:48
阅读次数:
142
The Elevator The Elevator The Elevator 描述 全是电梯。 Philo正处于高度为0的一个平台上,在他面前的一个平面,全是上上下下的电梯。 Philo想要离开这里,请你帮帮他。 电梯世界规则:这里的电梯所能到达的层数皆为整数层,当Philo进入电梯,他只能选择上升 ...
分类:
其他好文 时间:
2018-08-15 00:36:44
阅读次数:
191
字符设备(Character device) 是一个顺序的数据流设备,对这种设备的读写是按字符进行的,而且这些字符是连续地形成一个数据流。他不具备缓冲区,所以对这种设备的读写是实时的。 块设备(blockdevice) 是一种具有一定结构的随机存取设备,对这种设备的读写是按块进行的,他使用缓冲区来存 ...
分类:
其他好文 时间:
2018-08-08 13:56:00
阅读次数:
183
https://pintia.cn/problem-sets/994805342720868352/problems/994805511923286016 The highest building in our city has only one elevator. A request list i ...
分类:
其他好文 时间:
2018-08-05 17:28:16
阅读次数:
141
题意 有一部电梯,最初停在1层。 电梯有4个按键,上升a,b,c层,回到一层。 求从一层出发。能到达1~h的哪些楼层。 (h<=1018,a,b,c<=105) 题解 这种h能大的图论,一眼就知道是同余类。 以模a[1]的余数为下标建立数组,数组的意义是模a[1]为下标的最小的能到达的值。 显然之后 ...
分类:
其他好文 时间:
2018-07-28 21:46:42
阅读次数:
133
LIFTOVI Solitaire has N elevators. Each elevator are connecting exactly two floors and it does not stop on thefloors between that two floors. The spee ...
分类:
其他好文 时间:
2018-07-16 23:05:41
阅读次数:
169