1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-01-11 02:58:13 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
leetcode-problemset/leetcode-cn/problem (Chinese)/数位成本和为目标值的最大数字 [form-largest-integer-with-digits-that-add-up-to-target].html

65 lines
1.9 KiB
HTML
Raw Normal View History

2022-03-27 20:37:52 +08:00
<p>给你一个整数数组 <code>cost</code> 和一个整数 <code>target</code> 。请你返回满足如下规则可以得到的 <strong>最大</strong> 整数:</p>
<ul>
<li>给当前结果添加一个数位(<code>i + 1</code>)的成本为 <code>cost[i]</code> <code>cost</code> 数组下标从 0 开始)。</li>
<li>总成本必须恰好等于 <code>target</code> 。</li>
<li>添加的数位中没有数字 0 。</li>
</ul>
<p>由于答案可能会很大,请你以字符串形式返回。</p>
<p>如果按照上述要求无法得到任何整数,请你返回 "0" 。</p>
<p> </p>
<p><strong>示例 1</strong></p>
<pre>
<strong>输入:</strong>cost = [4,3,2,5,6,7,2,5,5], target = 9
<strong>输出:</strong>"7772"
<strong>解释:</strong>添加数位 '7' 的成本为 2 ,添加数位 '2' 的成本为 3 。所以 "7772" 的代价为 2*3+ 3*1 = 9 。 "977" 也是满足要求的数字,但 "7772" 是较大的数字。
<strong> 数字 成本</strong>
1 -> 4
2 -> 3
3 -> 2
4 -> 5
5 -> 6
6 -> 7
7 -> 2
8 -> 5
9 -> 5
</pre>
<p><strong>示例 2</strong></p>
<pre>
<strong>输入:</strong>cost = [7,6,5,5,5,6,8,7,8], target = 12
<strong>输出:</strong>"85"
<strong>解释:</strong>添加数位 '8' 的成本是 7 ,添加数位 '5' 的成本是 5 。"85" 的成本为 7 + 5 = 12 。
</pre>
<p><strong>示例 3</strong></p>
<pre>
<strong>输入:</strong>cost = [2,4,6,2,4,6,4,4,4], target = 5
<strong>输出:</strong>"0"
<strong>解释:</strong>总成本是 target 的条件下,无法生成任何整数。
</pre>
<p><strong>示例 4</strong></p>
<pre>
<strong>输入:</strong>cost = [6,10,15,40,40,40,40,40,40], target = 47
<strong>输出:</strong>"32211"
</pre>
<p> </p>
<p><strong>提示:</strong></p>
<ul>
<li><code>cost.length == 9</code></li>
<li><code>1 <= cost[i] <= 5000</code></li>
<li><code>1 <= target <= 5000</code></li>
</ul>