Hdoj Title Address: Portal
Moving TablesTime limit:2000/1000 MS (java/others) Memory limit:65536/32768 K (java/others)
Total Submission (s): 28729 Accepted Submission (s): 9435
Problem DescriptionThe Famous ACM (Advanced computer Maker) company have rented a floor of a building whose shape was in the Following figure.
The floor has a rooms each of the 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 was big, only one table can pass through the corridor. Some plan is needed to make the moving efficient. The manager figured out of the following plan:moving a table from a hostel to another the can is done within minutes. When moving a table from the class I to the Class J, the part of the corridor between the front of the class I and the front of the class J is Used. So, during each minutes, several moving between and rooms not sharing the same part of the corridor would be done Simult aneously. To make it clear the manager illustrated the possible cases and impossible cases of simultaneous moving.
For each of the either, at the most one table would be a 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.
Inputthe 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, which represents the number of tables to move . Each of the following N lines contains-positive integers s and t, representing that a table was to move from the hostel numbe R S to the guest number T (each of the number appears at a once in the N lines). From the N+3-rd line, the remaining test cases is listed in the same manner as above.
Outputthe output should contain the minimum time in minutes to complete the moving, one per line.
Sample Input
Sample Output
Test instructions: Moving a table from one room to another in a narrow corridor, the width of the corridor only allows one table to pass. Given the T,
Indicates that there is a T group of test data. Give n again, which means to move n tables. n There are n rows, two numbers per line, indicating the table from room a
Move to Room B. Corridor distribution map as shown, it takes 10 minutes for each table to move to the destination room, asking for a moving n table.
The time required.
Problem-solving idea: If you move multiple tables, the corridor you need to pass is not coincident, that is, you can move at the same time. If there's a corridor with m tables
To go through, only one table at a time, you need to move the table m*10. Set an array, and the subscript value is the room number.
When the table passes through the room, the room number is the array value corresponding to the subscript plus 10. Finally find the largest array value, that is, to move the table
The shortest time required.
#include <cstdio> #include <cstring> #include <algorithm>using namespace Std;int main () {int T,n,count [410],i,start,end,k;scanf ("%d", &t), while (t--) {scanf ("%d", &n), memset (Count,0,sizeof (count)), and while (n--) { scanf ("%d%d", &start,&end);//possible departure location larger than the destination room. if (start>end) { //Regardless of size, we can be seen as a small room moved to a large room k=start;start=end;end=k;} if (start%2==0)//To consider the actual situation, the departure room for even is minus one, can refer to the picture given in the title start-=1;if (end%2==1)//destination room for odd time plus a end+=1;for (i=start;i <=end;++i) count[i]+=10;} printf ("%d\n", *max_element (count,count+400)),//stl in the search for the number of sequence maximum function}return 0;}
Reference Blog: Portal
acm--Mobile Table--greedy--hdoj 1050--moving Tables