亚洲香蕉成人av网站在线观看_欧美精品成人91久久久久久久_久久久久久久久久久亚洲_热久久视久久精品18亚洲精品_国产精自产拍久久久久久_亚洲色图国产精品_91精品国产网站_中文字幕欧美日韩精品_国产精品久久久久久亚洲调教_国产精品久久一区_性夜试看影院91社区_97在线观看视频国产_68精品久久久久久欧美_欧美精品在线观看_国产精品一区二区久久精品_欧美老女人bb

首頁 > 學院 > 開發設計 > 正文

hdu1044【bfs+dfs】

2019-11-10 20:21:18
字體:
來源:轉載
供稿:網友

Collect More Jewels

Time Limit: 2000/1000 MS (java/Others) Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 7334 Accepted Submission(s): 1705

PRoblem Description It is written in the Book of The Lady: After the Creation, the cruel god Moloch rebelled against the authority of Marduk the Creator.Moloch stole from Marduk the most powerful of all the artifacts of the gods, the Amulet of Yendor, and he hid it in the dark cavities of Gehennom, the Under World, where he now lurks, and bides his time.

Your goddess The Lady seeks to possess the Amulet, and with it to gain deserved ascendance over the other gods.

You, a newly trained Rambler, have been heralded from birth as the instrument of The Lady. You are destined to recover the Amulet for your deity, or die in the attempt. Your hour of destiny has come. For the sake of us all: Go bravely with The Lady!

If you have ever played the computer game NETHACK, you must be familiar with the quotes above. If you have never heard of it, do not worry. You will learn it (and love it) soon.

In this problem, you, the adventurer, are in a dangerous dungeon. You are informed that the dungeon is going to collapse. You must find the exit stairs within given time. However, you do not want to leave the dungeon empty handed. There are lots of rare jewels in the dungeon. Try collecting some of them before you leave. Some of the jewels are cheaper and some are more expensive. So you will try your best to maximize your collection, more importantly, leave the dungeon in time.

Input Standard input will contain multiple test cases. The first line of the input is a single integer T (1 <= T <= 10) which is the number of test cases. T test cases follow, each preceded by a single blank line.

The first line of each test case contains four integers W (1 <= W <= 50), H (1 <= H <= 50), L (1 <= L <= 1,000,000) and M (1 <= M <= 10). The dungeon is a rectangle area W block wide and H block high. L is the time limit, by which you need to reach the exit. You can move to one of the adjacent blocks up, down, left and right in each time unit, as long as the target block is inside the dungeon and is not a wall. Time starts at 1 when the game begins. M is the number of jewels in the dungeon. Jewels will be collected once the adventurer is in that block. This does not cost extra time.

The next line contains M integers,which are the values of the jewels.

The next H lines will contain W characters each. They represent the dungeon map in the following notation:

[*] marks a wall, into which you can not move; [.] marks an empty space, into which you can move; [@] marks the initial position of the adventurer; [<] marks the exit stairs; [A] - [J] marks the jewels.

Output Results should be directed to standard output. Start each case with “Case #:” on a single line, where # is the case number starting from 1. Two consecutive cases should be separated by a single blank line. No blank line should be produced after the last test case.

If the adventurer can make it to the exit stairs in the time limit, print the sentence “The best score is S.”, where S is the maximum value of the jewels he can collect along the way; otherwise print the Word “Impossible” on a single line.

Sample Input 3

4 4 2 2 100 200


@A B<


4 4 1 2 100 200


@A B<


12 5 13 2 100 200


B……… .***.* @…A….<


Sample Output Case 1: The best score is 200.

Case 2: Impossible

Case 3: The best score is 300.

一個迷宮,L時間后倒塌,里面有M個寶藏。問能否逃出,如果逃出,得到的最大價值是多少? 寶藏由大寫字母【A】~【J】表示,‘*’表示墻,‘.’表示路,‘@’表示起點,‘<’表示出口。 題解: 寶藏最多十個,可以bfs找出寶藏,起點,出口相互之間的最短距離,然后dfs搜索最大能獲得的價值。 剪枝:ans==Max,已經搜到獲得最大價值 代碼:

#include <iostream>#include <string>#include <cstring>#include <cstdio>#include <cmath>#include <cstdlib>#include <algorithm>#include <queue>#include <map>#define MST(s,q) memset(s,q,sizeof(s))#define INF 0x3f3f3f3f#define MAXN 9999using namespace std;struct Node{ int x, y; int sum;} s, u, v;int W, H, L, M, ans, Max; // Max保存所有寶藏價值的和char Map[100][100];int move_x[4] = {1, -1, 0, 0}, move_y[4] = {0, 0, 1, -1};int value[11];int path[20][20]; // 保存(起點,終點,各寶藏 ) 它們直接的最短距離,最多bfs地圖十幾次bool vis[100][100];bool visited[20];// 求kind到其他點的距離void bfs(int x, int y, int kind) // kind==0 表示起點,kind==M+1表示終點,1-M表示寶藏{ queue<Node> Q; s.x = x, s.y = y, s.sum = 0; MST(vis, 0); Q.push(s); vis[x][y] = 1; while (!Q.empty()) { u = Q.front(); Q.pop(); for (int i = 0; i < 4; i++) { v.x = u.x + move_x[i], v.y = u.y + move_y[i]; if (v.x >= 0 && v.x < H && v.y >= 0 && v.y < W && !vis[v.x][v.y] && Map[v.x][v.y] != '*') { vis[v.x][v.y] = 1; v.sum = u.sum + 1; if (Map[v.x][v.y] != '.') { if (Map[v.x][v.y] == '@') path[kind][0] = v.sum; else if (Map[v.x][v.y] == '<') path[kind][M + 1] = v.sum; else path[kind][Map[v.x][v.y] - 'A' + 1] = v.sum; } Q.push(v); } } }}// kind表示當前節點,time表花費的時間,V表價值void dfs(int kind , int time, int V) // kind==0 表示起點,kind==M+1表示終點,其他表示寶藏{ if (time > L || ans == Max) return; // 超出時間或已經得到最大價值 if (kind == M + 1) { ans = max(ans, V); return; } for (int i = 1; i <= M + 1; i++) { if (!visited[i]) { visited[i] = 1; dfs(i, time + path[kind][i], V + value[i - 1]); visited[i] = 0; } }}int main(){ int T, sx, sy, icase = 1; cin >> T; while (T--) { cin >> W >> H >> L >> M; Max = 0; for (int i = 0; i < M; i++) { scanf("%d", &value[i]); Max += value[i]; } value[M] = 0; for (int i = 0; i < H; i++) scanf("%s", Map[i]); MST(path, INF); // 把距離初始為最大 for (int i = 0; i < H; i++) for (int j = 0; j < W; j++) { if (Map[i][j] == '@') bfs(i, j, 0); else if (Map[i][j] == '<')bfs(i, j, M + 1); else if (Map[i][j] >= 'A' && Map[i][j] <= 'J') bfs(i, j, Map[i][j] - 'A' + 1); } MST(visited, 0); visited[0] = 1; ans = -1; dfs(0, 0, 0); printf("Case %d:/n", icase++); if (ans != -1) printf("The best score is %d./n", ans); else printf("Impossible/n"); if (T) printf("/n"); }}
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
亚洲香蕉成人av网站在线观看_欧美精品成人91久久久久久久_久久久久久久久久久亚洲_热久久视久久精品18亚洲精品_国产精自产拍久久久久久_亚洲色图国产精品_91精品国产网站_中文字幕欧美日韩精品_国产精品久久久久久亚洲调教_国产精品久久一区_性夜试看影院91社区_97在线观看视频国产_68精品久久久久久欧美_欧美精品在线观看_国产精品一区二区久久精品_欧美老女人bb
久久夜精品va视频免费观看| 久久久精品久久久久| 日韩中文视频免费在线观看| 精品呦交小u女在线| 国产欧美一区二区三区久久| 在线日韩日本国产亚洲| 91精品国产91久久久久久不卡| 成人国产在线视频| 国产精品99免视看9| 国产精品入口福利| 国产精品第10页| 色综合91久久精品中文字幕| 欧美与黑人午夜性猛交久久久| 国产情人节一区| 自拍亚洲一区欧美另类| 国产精自产拍久久久久久蜜| 伊人久久大香线蕉av一区二区| 日韩美女免费观看| 欧美黑人xxx| 国产免费一区视频观看免费| 成人激情综合网| 欧美日韩成人精品| 91精品综合久久久久久五月天| 国产欧美一区二区三区四区| 成人性生交大片免费看小说| 成人欧美一区二区三区在线湿哒哒| 欧美肥婆姓交大片| 亚洲国产精品推荐| 亚洲一区中文字幕在线观看| 国产欧美精品在线播放| 欧美激情视频网站| 欧美日韩视频在线| 夜夜嗨av色综合久久久综合网| 97超碰蝌蚪网人人做人人爽| 日韩亚洲第一页| 国产精品视频大全| 欧美大尺度在线观看| 欧美中在线观看| 亚洲精品suv精品一区二区| 国产精品男女猛烈高潮激情| 国产日韩在线看片| 亚洲一区美女视频在线观看免费| 国语对白做受69| 国色天香2019中文字幕在线观看| 国产自产女人91一区在线观看| 亚洲综合在线小说| 欧美成人免费小视频| 日韩精品视频在线| 欧美又大又硬又粗bbbbb| 亚洲日韩欧美视频一区| 亚洲大胆人体av| 欧美日韩国产精品一区二区不卡中文| 中日韩午夜理伦电影免费| 中文字幕日本精品| 国产丝袜精品视频| 久久精品夜夜夜夜夜久久| 国产不卡av在线免费观看| 国产精品入口日韩视频大尺度| 久久久久久噜噜噜久久久精品| 亚洲精品免费av| 国产97色在线| 日韩免费中文字幕| 亚洲高清一二三区| 日韩精品免费在线观看| 国产成一区二区| 亚洲国产古装精品网站| 在线精品国产成人综合| 国内精品久久久久久中文字幕| 欧美成aaa人片免费看| 狠狠色狠狠色综合日日五| 久久久久亚洲精品国产| 国产一区深夜福利| 自拍视频国产精品| 少妇久久久久久| 午夜精品一区二区三区av| 欧美电影在线免费观看网站| 国产精品久久久久久中文字| 97视频在线观看网址| 欧美激情视频在线免费观看 欧美视频免费一| 日韩av在线高清| 亚洲激情视频在线播放| 亚洲欧美激情另类校园| 亚洲精品中文字幕av| 亚洲国产成人精品一区二区| 1769国内精品视频在线播放| 精品国偷自产在线| 欧美激情高清视频| 欧美性感美女h网站在线观看免费| 精品一区二区亚洲| 深夜福利一区二区| 中文字幕日韩av电影| 成人免费高清完整版在线观看| 欧美色欧美亚洲高清在线视频| 亚洲视频在线观看网站| 国产精品久久久久久久久免费看| 亚洲三级黄色在线观看| 日本国产精品视频| 懂色av中文一区二区三区天美| 国产精品久久久久影院日本| 日韩激情片免费| 日韩激情视频在线播放| 亚洲国产成人av在线| 日韩美女在线观看一区| 久久久久久久影视| 中文字幕日韩av| 精品久久久久久久久久久久久| 红桃av永久久久| 日韩a**中文字幕| 欧美国产精品日韩| 欧美福利视频网站| 国产精品视频xxxx| 日韩黄色av网站| 国产精品91久久久| 91成人精品网站| 91免费看视频.| 亚洲free嫩bbb| 久久综合久久美利坚合众国| 97成人在线视频| 日韩美女av在线免费观看| 久久天天躁狠狠躁老女人| 色偷偷91综合久久噜噜| 91精品国产亚洲| 欧美专区在线观看| 欧美性高跟鞋xxxxhd| 中文字幕在线国产精品| 国产成人自拍视频在线观看| 国产精品欧美一区二区| 欧美极品少妇xxxxⅹ免费视频| 亚洲免费av网址| 久久久这里只有精品视频| 麻豆国产va免费精品高清在线| 久久久91精品国产| 亚洲午夜女主播在线直播| 91丝袜美腿美女视频网站| 欧美激情一级二级| 69久久夜色精品国产69| 亚洲free性xxxx护士白浆| 国产一区二区三区丝袜| 亚洲综合精品一区二区| 久久这里只有精品99| 秋霞午夜一区二区| 日韩在线欧美在线| 韩国精品美女www爽爽爽视频| 久久久av一区| 国产精品第一第二| 性欧美亚洲xxxx乳在线观看| 亚洲一区二区三区久久| 国产成人鲁鲁免费视频a| 国产精品久久久一区| 久久久久久伊人| 国产亚洲视频中文字幕视频| 久久全国免费视频| 欧美在线精品免播放器视频| 国产精品亚洲激情| 午夜精品久久17c| 亚洲色图50p| 亚洲国产精品成人va在线观看| 久久亚洲国产精品| 久久久www成人免费精品| 国产精品成人播放| 国产精品美女无圣光视频| 精品中文字幕久久久久久| 色一情一乱一区二区| 欧亚精品中文字幕|