博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
1050 Moving Tables
阅读量:5896 次
发布时间:2019-06-19

本文共 2878 字,大约阅读时间需要 9 分钟。

Moving Tables

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)

Total Submission(s): 20344    Accepted Submission(s): 6900

Problem Description
The famous ACM (Advanced Computer Maker) Company has rented a floor of a building whose shape is in the following figure. 
The floor has 200 rooms each on the north side and south side along the corridor. Recently the Company made a plan to reform its system. The reform includes moving a lot of tables between rooms. Because the corridor is narrow and all the tables are big, only one table can pass through the corridor. Some plan is needed to make the moving efficient. The manager figured out the following plan: Moving a table from a room to another room can be done within 10 minutes. When moving a table from room i to room j, the part of the corridor between the front of room i and the front of room j is used. So, during each 10 minutes, several moving between two rooms not sharing the same part of the corridor will be done simultaneously. To make it clear the manager illustrated the possible cases and impossible cases of simultaneous moving. 
For each room, at most one table will be either moved in or moved out. Now, the manager seeks out a method to minimize the time to move all the tables. Your job is to write a program to solve the manager’s problem.
 

 

Input
The input consists of T test cases. The number of test cases ) (T is given in the first line of the input. Each test case begins with a line containing an integer N , 1<=N<=200 , that represents the number of tables to move. Each of the following N lines contains two positive integers s and t, representing that a table is to move from room number s to room number t (each room number appears at most once in the N lines). From the N+3-rd line, the remaining test cases are listed in the same manner as above.
 

 

Output
The output should contain the minimum time in minutes to complete the moving, one per line.
 

 

Sample Input
3 4 10 20 30 40 50 60 70 80 2 1 3 2 200 3 10 100 20 80 30 50
 

 

Sample Output
10 20 30
 
Source
1 #include
2 #include
3 #include
4 #include
5 #include
6 #include
7 using namespace std; 8 struct ln{ 9 int x;10 int y;11 }a[209];12 int main()13 {14 //freopen("in.txt","r",stdin);15 int t;16 int c[209];17 scanf("%d",&t);18 while(t--)19 {20 memset(a,0,sizeof(a));21 memset(c,0,sizeof(c));22 int n,swap;23 scanf("%d",&n);24 for(int i=0;i
a[i].y)36 {37 swap=a[i].x;38 a[i].x=a[i].y;39 a[i].y=swap;40 }41 for(int j=a[i].x;j<=a[i].y;j++)42 {43 c[j]++;44 }45 }46 //sort(a,a+n,cmp);47 int max=0;48 for(int i=1;i<=200;i++)49 {50 if(c[i]>max)51 max=c[i];52 }53 printf("%d\n",max*10);54 }55 return 0;56 }
View Code

 

 

 

 

 

 

 

转载于:https://www.cnblogs.com/xuesen1995/p/4105853.html

你可能感兴趣的文章
[开源]KJFramework.Message 高性能二进制消息框架 - 多元素数组的高性能优化
查看>>
webpack入门学习笔记02 —— 初始化一个webpack项目
查看>>
软件测试技术及工具
查看>>
马蜂窝推荐系统容灾缓存服务的设计与实现
查看>>
C++中vector小学习,顺便查了下<stdio.h>(或<cstdio>)
查看>>
从实现角度看redis lazy free的使用和注意事项
查看>>
mysql常见的优化需要注意的点
查看>>
使用Docker 在本地搭建 Redis 环境
查看>>
作用域
查看>>
jmeter(1) 组件执行顺序
查看>>
关于width: 100%的一些看法
查看>>
第十三周项目1-动物这样叫
查看>>
CUDA和TensorFlow的版本匹配问题
查看>>
gerrit安装及其注意事项
查看>>
设置grid行字体颜色为红色
查看>>
jQuery 快捷操作
查看>>
windows docker
查看>>
Springboot中发送邮件util
查看>>
「小程序JAVA实战」小程序的视频展示页面初始化(63)
查看>>
瀑布开发模式和敏捷开发模式
查看>>