推桌子 时间限制:1000 ms | 内存限制:65535 KB 难度:3 推桌子 时间限制:1000 ms | 内存限制:65535 KB 难度:3 #include<stdio.h>#include<algorithm>using namespace std;int main(){ int nu ...
分类:
其他好文 时间:
2017-08-01 17:47:41
阅读次数:
198
Moving Tables
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 24372 Accepted Submission(s): 8071
Problem Description
The famous ...
分类:
其他好文 时间:
2015-08-06 22:37:40
阅读次数:
148
Moving Tables
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 24372 Accepted Submission(s): 8071
Problem Description
The famous ...
分类:
其他好文 时间:
2015-08-05 15:01:01
阅读次数:
92
#include //注意两点,桌子可能从编号高的房间推到编号低的房间。如果2 3 ,4 5也是要分两次进行。因为3和4在同一走廊。
#include
#include
using namespace std;
struct node
{
int star,end;
}c[205];
bool cmp(node x,node y)
{
if(x.star<y.star) return...
分类:
其他好文 时间:
2015-04-21 11:13:54
阅读次数:
122