1. a heuristic function h(n): a heuristic value of n, that is the estimated cost of reaching goal from n. 2. How to design heuristics? properties of a good heuristic function should have: admissibility: a heuristic function is said to be admissible i…
描述 宇航员Bob有一天来到火星上,他有收集硬币的习惯.于是他将火星上所有面值的硬币都收集起来了,一共有n种,每种只有一个:面值分别为a1,a2- an. Bob在机场看到了一个特别喜欢的礼物,想买来送给朋友Alice,这个礼物的价格是X元.Bob很想知道为了买这个礼物他的哪些硬币是必须被使用的,即Bob必须放弃收集好的哪些硬币种类.飞机场不提供找零,只接受恰好X元. 输入 第一行包含两个正整数n和x.(1 <= n <= 200, 1 <= x <= 10000)第二行从小到大为…