- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个有趣的面试问题,但我很难解决(我有 10 个排列中的 7 个)
问题是
Find all possible permutations to make change given the following coins, 25¢, 10¢, 5¢. The answer MUST BE saved in a list, and MUST BE returned as a JSON string when the method is called
此外,要求是打印时,解决方案必须如下所示
For instance, given an amount of 50¢, the solution should look like the following when printed out
25: 2, 10: 0, 5: 0
25: 1, 10: 1, 5: 3
25: 1, 10: 2, 5: 1
25: 1, 10: 0, 5: 5
25: 0, 10: 5, 5: 0
25: 0, 10: 4, 5: 2
25: 0, 10: 3, 5: 4
25: 0, 10: 2, 5: 6
25: 0, 10: 1, 5: 8
25: 0, 10: 0, 5: 10
不用说,2个小时(考试时间限制)后我无法完成。但是,如果我能解决这个问题,它会让我徘徊。在过去的 6 个小时里我一直在尝试得到结果,但我能想到的最好的结果是
1 => {25: 2, 10: 0, 5: 0}
2 => {25: 1, 10: 1, 5: 3}
3 => {25: 1, 10: 2, 5: 1}
4 => {25: 1, 10: 0, 5: 5}
5 => {25: 0, 10: 5, 5: 0}
6 => {25: 0, 10: 1, 5: 8}
7 => {25: 0, 10: 0, 5: 10}
使用此代码
class ChangeMachine(object):
def __init__(self, amount, coins=[25, 10, 5]):
self.amount = amount
self.coins = coins
self.result = []
self.initial_way = {}
for coin in coins:
self.initial_way[coin] = 0
def getAllPermutations(self):
for index in xrange(0, len(self.coins)):
coin = self.coins[index]
self.changeFromSameCoin(self.amount, coin)
self.changeUsingOneCoin(self.amount, coin, self.coins[index + 1:])
def changeFromSameCoin(self, amount, coin):
"""loops through all the coins, finding the ones which can be divided
into the amount evenly
Args:
amount: int
coin: int
Returns:
None
"""
way = dict(self.initial_way)
if amount % coin == 0:
way[coin] = amount / coin
self.result.append(dict(way))
def changeUsingOneCoin(self, amount, initial_coin, coin_list):
"""Makes change using 1 large coin and the rest small coins
Args:
amount: int
initial_coin: int - the "large" denomination that is to be used once
coin_list: list - contains the remainder of the coins
"""
if amount <= initial_coin:
return
remainder = amount - initial_coin
init_way = dict(self.initial_way)
num_coins = len(coin_list)
coin_used = 0
outer_counter = 0
# keep track of the number of times the outer coins are used
# make it 1 because the outer coin has to be used at least once
# even if outer coin is > remainder, we are still trying to use
# it once
outer_coin_used = 1
# since the initial coin MUST BE used at least once, go ahead and
# create an initial dictionary that has the initial coin used
# once
init_way[initial_coin] = 1
while outer_counter < num_coins:
outer_coin = coin_list[outer_counter]
# initialize way on every loop
way = dict(init_way)
# subtract the current outer coin from the remainder. We do this
# because if the remainder is 0, then it means that only 1 of this
# coin and the initial coin are needed to make change
# If the remainder is negative, then, one of the larger coin and
# one of this coin, cannot make change
# The final reason is because if we make change with the other
# coins, we need to check if we double, triple, etc this coin
# that we can still make change.
# This helps us find all permutations
remainder -= (outer_coin * outer_coin_used)
if remainder < 0:
# move to next coin using the outer_counter
outer_counter += 1
# reset the remainder to initial - large coin
remainder = amount - initial_coin
# rest the times the coin was used to 1
outer_coin_used = 1
continue
way[outer_coin] += outer_coin_used
if remainder == 0:
# add the way we just found to our result list
self.result.append(dict(way))
# move to the next element in the list
outer_counter += 1
# reset the remainder, our way result set, and times the
# outer coin was used
remainder = amount - initial_coin
way = dict(init_way)
outer_coin_used = 0
continue
# so, if we got here, the outer coin reduced the remainder, but
# didn't get it to 0
for index in range(outer_counter + 1, num_coins):
# our goal here is to make change with as few of coins as
# possible
inner_coin = coin_list[index]
if remainder % inner_coin == 0:
way[inner_coin] = remainder / inner_coin
remainder = 0
break
if remainder - inner_coin < 0:
# this coin is too large, move onto the next coin
continue
# this coin goes into the remainder some odd number of times
# subtract it from our remainder and move onto the next coin
remainder /= inner_coin
way[inner_coin] += remainder
# end for index in range()
if remainder == 0:
# we found a way to make change, save it
self.result.append(dict(way))
# reset the remainder to initial - large coin
remainder = amount - initial_coin
# increment the outer coin used by 1, because we will try
# to decrement remainder by more than 1 outer coin
outer_coin_used += 1
# end while loop
return
# end def changeUsingOneCoin()
# end class
from pprint import pprint
def main(amount, coins=[25, 10, 5]):
result = []
amount = 50
coins = [25, 10, 5]
cm = ChangeMachine(amount, coins)
# cm.changeUsingOneCoin(amount, coins[0], coins[1:])
cm.getAllPermutations()
counter = 1
for record in cm.result:
print "{} => {}".format(counter, record)
counter += 1
return result
if __name__ == '__main__':
"""
Result MUST BE a list of dictionaries containing all possible answers
For Example: if main(50, [25, 10, 5]) should return
[
{25: 2},
{25: 1, 10: 2, 5: 1},
{25: 1, 10: 1, 5: 3},
{25: 1, 10: 0, 5: 5},
{25: 0, 10: 5, 5: 0},
{25: 0, 10: 4, 5: 2},
{25: 0, 10: 3, 5: 4},
{25: 0, 10: 2, 5: 6},
{25: 0, 10: 1, 5: 8},
{25: 0, 10: 0, 5: 10},
]
"""
result = main(50)
我知道我不会得到这份工作。但是,我真的很想知道解决方案
最佳答案
他们对实际输出有多严格(有些公司在这方面可能相当迂腐)?这是一个快速解决方案,仅使用几个嵌套循环即可生成 10 种组合:
from itertools import count
from pprint import pprint
from operator import itemgetter
results = []
target = 50
for q in count(0):
for d in count(0):
for n in count(0):
if n * 5 + d * 10 + q * 25 == target:
results.append({25: q, 10: d, 5: n})
if n * 5 + d * 10 + q * 25 > target:
break
if d * 10 + q * 25 > target:
break
if q * 25 > target:
break
results.sort(key = itemgetter(5))
results.sort(key = itemgetter(10), reverse = True)
results.sort(key = itemgetter(25), reverse = True)
pprint(results)
产品:
[{5: 0, 10: 0, 25: 2},
{5: 1, 10: 2, 25: 1},
{5: 3, 10: 1, 25: 1},
{5: 5, 10: 0, 25: 1},
{5: 0, 10: 5, 25: 0},
{5: 2, 10: 4, 25: 0},
{5: 4, 10: 3, 25: 0},
{5: 6, 10: 2, 25: 0},
{5: 8, 10: 1, 25: 0},
{5: 10, 10: 0, 25: 0}]
sort
调用只是为了将列表按照它们提供的顺序排列(但这似乎很荒谬,恕我直言)。
关于python - 找出所有可能的变化排列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46375556/
找出/计算符号的宽度 panel.add(textfield,BorderLayout.SOUTH); system.out.println(textfield.getWidth()); System
嘿,所以我正在制作一个因式分解程序,我想知道是否有人可以给我任何想法,让我知道如何找到一个有效的方法来找到两个数字乘以指定数字的倍数,以及添加到指定数字。 例如我可能有 (a)(b) = 6 a +
我以以下方式将 GWT 方法导出到 native javascript: public class FaceBookGalleryEntryPoint implements EntryPoint {
通常,当您在 Web 上找到 Silverlight 代码示例时,它可能只包含一段代码,而不是使其工作所需的完整代码集。当我试图确定在 xaml 文件顶部使用什么命名空间和/或程序集声明时,这让我感到
我对 Dojo 工具包有点陌生。有些问题我想得到启发(我用谷歌搜索,但没有得到任何合适且令人满意的答案) 我已经在运行的应用程序(由另一个软件开发人员开发)中有一个 dojo.js(也许是下载的未压缩
这个问题在这里已经有了答案: 关闭 11 年前。 Possible Duplicate: How to detect which row [ tr ] is clicked? 我有一个这样的表:
我目前正在尝试找出特定应用程序使用的数据保护类别。 我的第一个方法是使用未加密的 iTunes 备份来确定所使用的保护类别。我用过this提取备份。但现在我要陷入困境了。 此外,我不太确定 iTune
我有一个 NSRangeException 错误,该错误并不总是发生(尤其是在调试时)。它是随机出现的,我无法弄清楚它来自哪里。我有很多数组操作,因此很难以这种方式消除它。 我的问题是我是否可以从调试
我有一个控制台程序,它链接到 Mac 上的 Foundation 框架。如何找到可执行文件所在的文件夹? 最佳答案 即使该工具不在 bundle 中,您仍然可以使用一些 NSBundle 方法。例如:
简单的问题是:如何找出 Cocoa 应用程序中可执行文件的位置。 请记住,在许多类 Unix 操作系统中,人们使用 PATH 环境来为其可执行文件分配首选位置,特别是当他们的系统中有同一应用程序的多个
如何找出 TGridPanel 内控件的位置(行和列索引)?我想对按钮数量使用常见的 OnClick 事件,并且需要知道按钮的 X、Y 位置。 我使用的是 Delphi 2007。 最佳答案 不幸的是
我试图找到一种方法来确定 .NET 应用程序中任意文件夹中的总磁盘空间和可用磁盘空间。文件夹中的“总磁盘空间”和“可用磁盘空间”是指如果您对其执行“dir”命令,该文件夹将报告的总磁盘空间和可用磁盘空
我希望能够通过 shell 脚本判断任何 POSIX 系统上是否存在命令。 在 Linux 上,我可以执行以下操作: if which ; then ...snip... fi 但是,Solar
如何找到不同 Haskell 函数的复杂性(以 big-O 表示)? 例如, subsequences 的复杂度是多少? ? 最佳答案 您只能通过查看代码来计算函数的确切复杂度。但是,您可以使用 cr
我试图找出我的对象占用了多少内存来查看有多少对象最终出现在 Large Object Heap 上。 (超过 85,000 字节)。 是否像为每个对象添加 4(表示 int)、添加 8(表示 long
一旦我在 Vim 中加载任何文件,它就会尝试检测该文件,并在可能的情况下用颜色突出显示它。 我想知道一个 Vim 命令,它会告诉我 Vim 认为哪个 ftplugin 或文件类型插件/文件类型会突出显
是否有可能找出 querySelector 的哪一部分与 DOM 中的特定元素匹配? 假设您有以下查询: 'h1,h2,h3,h4.custom-bg,div' 如果您使用 document.quer
我遇到一个问题,用户设置的区域设置(德语)与安装的语言 Windows(英语)不同。有没有办法发现安装的 Windows 语言与用户设置的区域设置?我应该注意的问题是我正在创建共享,并且根据区域设置设
我正在写入应用程序中的文件。我想找到该文件以检查该文件是否已正确写入(以便我可以通过 Web View 访问该文件)。这是我用来编写文件的代码: try { FileOutputStream
我有一个从 JSON 文件填充的 HashMap。键值对中的值可以是两种不同的类型 - 字符串或其他键值对。 例如: HashMap hashMap = new Map(); JSON 文件看起来有点
我是一名优秀的程序员,十分优秀!