zoukankan      html  css  js  c++  java
  • poj1548--Robots

    Robots
    Time Limit: 1000MS   Memory Limit: 10000K
    Total Submissions: 4037   Accepted: 1845

    Description

    Your company provides robots that can be used to pick up litter from fields after sporting events and concerts. Before robots are assigned to a job, an aerial photograph of the field is marked with a grid. Each location in the grid that contains garbage is marked. All robots begin in the Northwest corner and end their movement in the Southeast corner. A robot can only move in two directions, either to the East or South. Upon entering a cell that contains garbage, the robot will pick it up before proceeding. Once a robot reaches its destination at the Southeast corner it cannot be repositioned or reused. Since your expenses are directly proportional to the number of robots used for a particular job, you are interested in finding the minimum number of robots that can clean a given field. For example, consider the field map shown in Figure 1 with rows and columns numbered as shown and garbage locations marked with a 'G'. In this scheme, all robots will begin in location 1,1 and end in location 6, 7. 
     
    Figure 1 - A Field Map

    Figure 2 below shows two possible solutions, the second of which is preferable since it uses two robots rather than three. 
     
    Figure 2 - Two Possible Solutions

    Your task is to create a program that will determine the minimum number of robots needed to pick up all the garbage from a field. 

    Input

    The input consists of one or more field maps followed by a line containing -1 -1 to signal the end of the input data. A field map consists of one or more lines, each containing one garbage location, followed by a line containing 0 0 to signal the end of the map. Each garbage location consists of two integers, the row and column, separated by a single space. The rows and columns are numbered as shown in Figure 1. The garbage locations will be given in row-major order. No single field map will have more than 24 rows and 24 columns. The sample input below shows an input file with two field maps. The first is the field map from Figure 1.

    Output

    The output will consist of a single line for each field map containing the minimum number of robots needed to clean the corresponding field.

    Sample Input

    1 2
    1 4
    2 4
    2 6
    4 4
    4 7
    6 6
    0 0
    1 1
    2 2
    4 4
    0 0
    -1 -1

    Sample Output

    2
    1

    Source

    //主要找出关键意思;本题只要满足存在最少多少个划分使得每个划分里面的二元组都满足x1 <= x2并且y1 <= y2 即可:Dirworth定理
     1 #include <stdio.h>
     2 #include <algorithm>
     3 using namespace std ;
     4 
     5 struct field
     6 {
     7     int h ;
     8     int z ;
     9 } ;
    10 field num[600] ;
    11 
    12 bool cmp(field h,field z)          /*
    13 {
    14     if(h.h == z.h)
    15     return h.z < z.z ;
    16     else
    17     return h.h < z.h ;             /*
    18 }
    19 
    20 
    21 int main()
    22 {
    23     int m,n,i ;
    24     while(~scanf("%d %d",&num[0].h, &num[0].z) , (num[0].h!=-1 , num[0].z!=-1))
    25     {
    26         for(i=1; ;i++)
    27         {
    28             scanf("%d %d",&num[i].h, &num[i].z) ;
    29             if(!num[i].h , !num[i].z)
    30             break;
    31         }
    32         sort(num, num+i, cmp) ;
    33         int temp, j, k, total=0 ;
    34         for(j=0; j<i; j++)                 /*不可先遍历,后统计!0个数,不是最优 ;
    35         {
    36             if(num[j].z != 0)
    37             {
    38                 temp = num[j].z ;
    39                 total++;
    40                 for(k=j+1; k<i; k++)
    41                 {
    42                     if(num[k].z >= temp)
    43                     {
    44                         temp=num[k].z ;
    45                         num[k].z = 0 ;
    46                     }
    47                 }
    48             }
    49             
    50         }                                /*
    51         printf("%d
    ",total);
    52     }
    53     return 0 ;
    54 }
  • 相关阅读:
    设置Fedora core 6中yum光盘源 去除无收集不克不及翻开软件包治理的标题效果
    从头放置Windows后Ubuntu 8.04启动的恢复
    _desktop.ini“维金(Worm.Viking.m)”的病毒?
    理顺 JavaScript (17) 函数
    理顺 JavaScript (15) 类的继承手段: prototype
    UniCode 速查表
    理顺 JavaScript (16) 使用 prototype
    一句话判断网络是否联通
    给 Edit 两个可选值 回复 "delphi学习中" 的问题
    理顺 JavaScript (20) String 中的正则表达式函数
  • 原文地址:https://www.cnblogs.com/soTired/p/4623586.html
Copyright © 2011-2022 走看看