zoukankan      html  css  js  c++  java
  • NYOJ 220 推桌子(区间问题)

    推桌子

    时间限制:1000 ms  |           内存限制:65535 KB
    难度:3
     
    描述
    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.
     
    输入
    The input consists of T test cases. The number of test cases ) (T is given in the first line of the input file. 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 3 + N -rd line, the remaining test cases are listed in the same manner as above.
    输出
    The output should contain the minimum time in minutes to complete the moving, one per line.
    样例输入
    3 
    4 
    10 20 
    30 40 
    50 60 
    70 80 
    2 
    1 3 
    2 200 
    3 
    10 100 
    20 80 
    30 50
    样例输出
    10
    20
    
    思路1:区间问题(类多次寻找递增子序列);
    代码:
     1  
     2 #include <stdio.h>
     3 #include <stdlib.h>
     4 #include<algorithm>
     5 using namespace std;
     6 typedef struct node
     7 {
     8   int from,to;
     9 } M;
    10 M r[201];
    11 bool cmp(M a,M b)
    12 {
    13    if(a.from<b.from) return true;
    14    if(a.from==b.from&&a.to<b.to) return true;
    15    return false;
    16 }
    17 int main()
    18 {
    19 
    20   int T,t,count,move,i,j,tf;
    21   scanf("%d",&T);
    22   while(T--)
    23      {
    24         scanf("%d",&move);
    25         for(i = 0 ; i < move ; ++i)
    26         {
    27           scanf("%d %d",&r[i].from,&r[i].to);
    28           r[i].from = (r[i].from+1)>>1;
    29           r[i].to = (r[i].to+1)>>1;
    30           if(r[i].from>r[i].to){
    31           tf=r[i].from;
    32           r[i].from=r[i].to;
    33           r[i].to=tf;}
    34         }
    35         sort(r,r+move,cmp);
    36         count=0;
    37         for(i=0;i<=move-1;i++)
    38         {
    39             if(r[i].from!=0)
    40             {
    41                 t=r[i].to;
    42                 count++;
    43                 for(j=i+1;j<=move-1;j++)
    44                 {
    45                     if(r[j].to>t&&r[j].from>t)
    46                     {
    47                         t=r[j].to;
    48                         r[j].from=0;
    49                     }
    50                 }
    51              }
    52          }
    53          printf("%d
    ",count*10);
    54     }
    55   return 0;
    56 
    57 }
    58 
    59         
    View Code

    思路2:数组下标表示楼道小分区点,寻找最大覆盖次数;
    代码:

     1  
     2 #include <stdio.h>
     3 #include <string.h>
     4 int move[201];
     5 int main()
     6 {
     7   int T,i,j,table,ans,from,to,tmp;
     8   scanf("%d",&T);
     9   while(T--)
    10      {
    11         scanf("%d",&table);
    12         memset(move,0,sizeof(move));
    13         for(j = 0 ; j < table ; ++j)
    14         {
    15            scanf("%d %d",&from,&to);
    16            from = (from+1)/2;
    17            to = (to +1)/2;//缩减1—200
    18           if(from > to)//from<=to
    19           {
    20             tmp = from ;
    21             from = to ;
    22             to = tmp;
    23           }
    24            for(i = from ; i <= to ; ++i)
    25            ++move[i];//记录每房间区段move次数,即两from和to区间相交时,加1
    26         }
    27          ans = 0;
    28          for(i =1 ;i <= 200 ; ++i)
    29            if(move[i] > ans)
    30                     ans = move[i];
    31          printf("%d
    ",ans*10);
    32      }
    33   return 0;
    34 
    35 }
    36         
    View Code
  • 相关阅读:
    python操作MongoDB
    MongoDB操作——备忘录
    python中运行js代码—js2py
    糗事百科爬虫_基于线程池
    糗事百科_基于队列和多线程
    Django ModelForm组件
    Django补充(mark_safe,url反向解析)
    Django MiddleWare中间件
    Python常用模块 -- sys模块的常用用法
    Python常用模块 -- os模块常用用法
  • 原文地址:https://www.cnblogs.com/luoshuihanbing/p/3288575.html
Copyright © 2011-2022 走看看