zoj3433(贪心+优先队列)

Gu Jian Qi Tan

Time Limit: 2 Seconds      Memory Limit: 65536 KB

Gu Jian Qi Tan is a very hot Chinese RPG in this summer vacation. SuSu is the most important role in the game. When SuSu first meet the ancient dragon QianYu, he will have a very difficult battle with QianYu. In order to resist QianYu's powerful attack, SuSu must make a special armor, which needs some precious materials ( We call it "Ice Heart" ).

SuSu and QianYu

Before this legend fight, SuSu must pass M dangerous labyrinth in order. In each labyrinth, there is a very powerful monster (We usually call it "BOSS") keeping watching the exit. So SuSu must defeat each BOSS if he wants to leave each labyrinth. When SuSu is fighting with a BOSS, he must attack its main body to kill it. however, some BOSS may have one or more special position of its body (such as wings, hands, weapons). SuSu can choose to attack these special positions and he will get one Ice Heart if he break the defence of one special position. Of course SuSu can choose not to attack special positions but just attack the BOSS's main body (in this situation, he can still kill the BOSS, but he cannot get Ice Heart).

The defence of all special positions are so strong that normal attack are not available. SuSu must use magic skill to attack it. Once he uses a magic skill, his mana point will decrease to 0. In order to recover mana point, he can eat a special food "Dan Gui Hua Gao" (a kind of cake).

In each labyrinth, SuSu can collect some cakes by killing small monsters. When he fights with a BOSS, his initial mana point will be 0. Different BOSS may have different amount of special positions, and the defence of different position may also be different ( that is, some positions may need just one magic attack but some may need to be attacked many times )
Notice: cakes in previous labyrinth can be accumulated and brought to later labyrinth.

Can you tell how many Ice heart can SuSu get at most?

Input

The first line of the input is a single integer T (T <= 20) indicating the number of test cases.
In each case, fisrt there is a line containing one integer M ( M <= 1000) indicating the number of labyrinth.
Then M lines follow. In the ith line, first there is an integer n (n <= 1000) indicating the amount of special positions this BOSS has.
Then followd by n integers, the ith integer ( no more than 20 ) indicating the amount of magic attacks SuSu must use to break the ith special position.
Finally there is a line containing M integers, the ith integer ( no more than 20 ) indicating how many cakes SuSu can collect in the ith labyrinth.

Output

For each case, output one line, containing the maximum number of Ice Heart SuSu can get.

Sample Input
1
2
1 10
2 1 2
10 0
Sample Output
2
 1 #include<cstdio>
 2 #include<cstring>
 3 #include<iostream>
 4 #include<queue>
 5 #include<vector>
 6 using namespace std;
 7 int n,t,m,b;
 8 int main()
 9 {
10 //    freopen("C:/Users/lenovo/Desktop/input.txt","r",stdin);
11 //    freopen("C:/Users/lenovo/Desktop/output.txt","w",stdout);
12     scanf("%d",&t);
13     while(t--)
14     {
15         vector<int>a[2005];
16         scanf("%d",&m);
17         for(int i=0;i<m;i++)
18         {
19             scanf("%d",&n);
20             for(int j=0;j<n;j++)
21             {
22                 scanf("%d",&b);
23                 a[i].push_back(b);
24             }
25         }
26         int sum=0;
27         int k=0;
28         int amp;
29         priority_queue<int>q;
30         for(int i=0;i<m;i++)
31         {
32             scanf("%d",&amp);
33             //q.push(amp);
34             sum+=amp;
35             for(int j=0;j<a[i].size();j++)
36             {
37                 sum-=a[i][j];
38                 k++;
39                 q.push(a[i][j]);
40             }
41             while(sum<0)
42             {
43                 sum+=q.top();
44                 q.pop();
45                 k--;
46             }
47 
48         }
49         printf("%d\n",k);
50     }
51     return 0;
52 }

 

转载于:https://www.cnblogs.com/ZP-Better/p/4674327.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值