zoukankan      html  css  js  c++  java
  • 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#进程间通信(转)
    JavaScript获得页面区域大小的代码
    我的第一份外包经历及所得 (转)
    用Aptana调试JavaScript教程(转)
    NET中的消息队列
    c#线程基础之线程控制
    c#线程基础之原子操作
    sql2005分区表示例
    系统资源调用和shell32.dll简介
    Windows API入门简介
  • 原文地址:https://www.cnblogs.com/yyroom/p/3003511.html
Copyright © 2011-2022 走看看