• hdu 3177 Crixalis's Equipment


    Problem Description
    Crixalis - Sand King used to be a giant scorpion(蝎子) in the deserts of Kalimdor. Though he's a guardian of Lich King now, he keeps the living habit of a scorpion like living underground and digging holes.

    Someday Crixalis decides to move to another nice place and build a new house for himself (Actually it's just a new hole). As he collected a lot of equipment, he needs to dig a hole beside his new house to store them. This hole has a volume of V units, and Crixalis has N equipment, each of them needs Ai units of space. When dragging his equipment into the hole, Crixalis finds that he needs more space to ensure everything is placed well. Actually, the ith equipment needs Bi units of space during the moving. More precisely Crixalis can not move equipment into the hole unless there are Bi units of space left. After it moved in, the volume of the hole will decrease by Ai. Crixalis wonders if he can move all his equipment into the new hole and he turns to you for help.
     
    Input
    The first line contains an integer T, indicating the number of test cases. Then follows T cases, each one contains N + 1 lines. The first line contains 2 integers: V, volume of a hole and N, number of equipment respectively. The next N lines contain N pairs of integers: Ai and Bi.
    0<T<= 10, 0<V<10000, 0<N<1000, 0 <Ai< V, Ai <= Bi < 1000.
     
    Output
    For each case output "Yes" if Crixalis can move all his equipment into the new hole or else output "No".
     
    Sample Input
    2 20 3 10 20 3 10 1 7 10 2 1 10 2 11
     
    Sample Output
    Yes No
    该题的贪心决策是是差值最大的先进
    代码
     1 #include <cstdio>
     2 #include <iostream>
     3 #include <algorithm>
     4 
     5 using namespace std;
     6 #define N 1005
     7 
     8 typedef struct num
     9 {
    10     int a;
    11     int b;
    12 }num;
    13 
    14 num x[N];
    15 
    16 int f(num y,num z)
    17 {
    18     if(y.b - y.a > z.b - z.a)
    19         return 1;
    20     else return 0;
    21 }
    22 int main()
    23 {
    24         int t = 0;
    25         scanf("%d",&t);
    26         while(t--)
    27         {
    28             int n;
    29             int v;
    30             scanf("%d%d",&v,&n);
    31             int i = 0;
    32             for(i = 0; i < n; i++)
    33             scanf("%d%d",&x[i].a,&x[i].b);
    34             sort(x,x+n,f);
    35 
    36        /* for(i = 0; i < n; i++)
    37             printf("%d  %d \n",x[i].a,x[i].b);*/
    38 
    39         int max = v;
    40         int flag = 1;
    41         for(i = 0; i < n; i++)
    42         {
    43             if(x[i].b <= max)
    44             {
    45                 max -= x[i].a;
    46             }
    47             else
    48             {
    49                 flag = 0;
    50                 break;
    51             }
    52 
    53         }
    54 
    55         if(flag)
    56             printf("Yes\n");
    57         else
    58             printf("No\n");
    59         }
    60         return 0;
    61 }
  • 相关阅读:
    [C#]StringWriter实现的一个功能
    ASP.NET AJAX入门系列(1):概述
    ASP.NET 2.0 之 Master Page 学习笔记
    C#文件读写常用类介绍
    最新版FreeTextBox(版本3.1.6)在ASP.Net 2.0中使用简解
    关于Ajax 错误:'sys'未定义解决方法.
    教你解决微软MSN8.5无法安装问题
    对于javascript的function的总结
    ASP.NET开发:在用户控件中添加属性
    如何遍历枚举类型的对象、并获取枚举类型长度
  • 原文地址:https://www.cnblogs.com/yyroom/p/3003511.html
Copyright © 2020-2023  润新知