(hdu step 4.2.7)Kill the monster(有n個技能,求殺死怪物的技能的最小使用次數。在使用某一個技能的時候,如果怪物的能量值hp<=m,這時候造成的傷害值是原來的兩倍)

來源:互聯網
上載者:User

標籤:

 



題目:

Kill the monster
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 133 Accepted Submission(s): 97
 
Problem DescriptionThere is a mountain near yifenfei’s hometown. On the mountain lived a big monster. As a hero in hometown, yifenfei wants to kill it. 
Now we know yifenfei have n spells, and the monster have m HP, when HP <= 0 meaning monster be killed. Yifenfei’s spells have different effect if used in different time. now tell you each spells’s effects , expressed (A ,M). A show the spell can cost A HP to monster in the common time. M show that when the monster’s HP <= M, using this spell can get double effect.
 
InputThe input contains multiple test cases.
Each test case include, first two integers n, m (2<n<10, 1<m<10^7), express how many spells yifenfei has.
Next n line , each line express one spell. (Ai, Mi).(0<Ai,Mi<=m).
 
OutputFor each test case output one integer that how many spells yifenfei should use at least. If yifenfei can not kill the monster output -1. 
Sample Input
3 10010 2045 895  403 10010 2045 905 403 10010 2045 845 40
 
Sample Output
32-1
 
Authoryifenfei 
Source奮鬥的年代 
Recommendyifenfei



題目分析:

                深搜。簡單題。其實這道題基本沒什麼難度。只要把題目看懂。



代碼如下:

/* * h.cpp * *  Created on: 2015年2月26日 *      Author: Administrator */#include <iostream>#include <cstdio>using namespace std;const int maxn = 11;struct Node{//技能的結構體int spell;//傷害值int M;//如果放出這個大招的時候,怪物的hp小雨這個值,那麼這時候的傷害值是spell*2}node[maxn];bool visited[maxn];//用於標記某一個技能是否已經使用過int ans;//殺死怪物所需要的最小技能數int n;//總共的技能數int hp;//怪物的能量值/** * 深搜. * k:表示目前放到了第幾個技能 * hp:目前怪物的能量值 */void dfs(int k,int hp){/** * 越界判斷 */if(k >= 11){//如果已經把所有的技能都已經放完了return ;//則返回.}/** * 判斷是否成功 */if(hp <= 0){//如果怪物的能量值已經<=0if(ans > k){//如果當前儲存的最小技能數<當前的最小技能數ans = k;//更新一下包村的最小技能數}return ;//返回}int i;for(i = 1 ; i <= n ; ++i){//遍曆所有的技能if(visited[i] == false){//如果該技能還沒有被使用visited[i] = true;//將該技能標記為已經使用if(hp <= node[i].M){//如果怪物的能量值<=mdfs(k+1,hp-node[i].spell*2);//那麼這時候造成的傷害值是spell*2.繼續使用下一個技能}else{//否則dfs(k+1,hp-node[i].spell);//這時候造成的上海市spell}visited[i] = false;//復原.重新將該技能標記為沒有被訪問}}}int main(){while(scanf("%d%d",&n,&hp)!=EOF){int i;for(i = 1 ; i <= n ; ++i){scanf("%d%d",&node[i].spell,&node[i].M);}memset(visited,false,sizeof(visited));ans = 11;//初始化技能的最小使用次數dfs(0,hp);if(ans == 11){//如果ans一直沒有被更新printf("-1\n");//那麼證明怪物沒有被殺死}else{//否則,則證明怪物被殺死了printf("%d\n",ans);//輸出使用技能的最小次數}}return 0;}







(hdu step 4.2.7)Kill the monster(有n個技能,求殺死怪物的技能的最小使用次數。在使用某一個技能的時候,如果怪物的能量值hp<=m,這時候造成的傷害值是原來的兩倍)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.