前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Hdu 3177 Crixalis's Equipment

Hdu 3177 Crixalis's Equipment

作者头像
若羽
发布2019-07-15 16:20:37
3390
发布2019-07-15 16:20:37
举报
文章被收录于专栏:Code思维奇妙屋Code思维奇妙屋

Crixalis's Equipment

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 2795    Accepted Submission(s): 1141

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

Source

HDU 2009-10 Programming Contest

Recommend

lcy

 贪心.

贪心策略:当前放的物品所需的空间 Bi 和 下一个需要放的物品所占用空间 Aj 之和是否大于 当前物品所占用空间 Ai 和下一个物品所需空间 Bi 之和.

也就是(Bi+Aj)>(Bj+Ai)的话 就先放物品i 否则 先放物品j

需要空间大的先放.

可以用一组案例来思考一下这个贪心策略:

20 3

10 20

3 4

7 7

___________

代码如下:

代码语言:javascript
复制
 1 #include <cstdio>
 2 #include <cstring>
 3 #include <iostream>
 4 #include <algorithm>
 5 using namespace std;
 6 #define MAX 1001
 7 struct node
 8 {
 9     int a;
10     int b;
11 };
12 struct node x[MAX];
13 int v,n;
14 bool cmp(struct node x,struct node y)
15 {
16     if(x.b==y.b) return x.a>y.a;
17     return (x.b-x.a)>(y.b-y.a);
18 }
19 void init()
20 {
21     memset(x,0,sizeof(x));
22 }
23 void read()
24 {
25     int i;
26     scanf("%d %d",&v,&n);
27     for(i=0;i<n;i++)
28         scanf("%d %d",&x[i].a,&x[i].b);
29     sort(x,x+n,cmp);
30 }
31 void cal()
32 {
33     int i;
34     int res=v;
35     for(i=0;i<n;i++)
36     {
37         if(res<0||res<x[i].b)
38         {
39             res-=x[i].b;
40             break;
41         }
42         res-=x[i].a;
43     }
44     if(res>=0) printf("Yes\n");
45     else printf("No\n");
46 }
47 void solve()
48 {
49     init();
50     read();
51     cal();
52 }
53 
54 int main()
55 {
56     int t;
57     scanf("%d",&t);
58     while(t--)
59     {
60         solve();
61     }
62     return 0;
63 }
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2014-08-11 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • Crixalis's Equipment
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档