Skip to content

Commit 1f5f0cc

Browse files
authored
feat: add solutions to lc problems: No.2806~2813 (#1407)
* No.2806.Account Balance After Rounded Purchase * No.2807.Insert Greatest Common Divisors in Linked List * No.2808.Minimum Seconds to Equalize a Circular Array * No.2809.Minimum Time to Make Array Sum At Most x * No.2810.Faulty Keyboard * No.2811.Check if it is Possible to Split Array * No.2812.Find the Safest Path in a Grid * No.2813.Maximum Elegance of a K-Length Subsequence
1 parent 6853bba commit 1f5f0cc

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+4687
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,157 @@
1+
# [2806. 取整购买后的账户余额](https://leetcode.cn/problems/account-balance-after-rounded-purchase)
2+
3+
[English Version](/solution/2800-2899/2806.Account%20Balance%20After%20Rounded%20Purchase/README_EN.md)
4+
5+
## 题目描述
6+
7+
<!-- 这里写题目描述 -->
8+
9+
<p>一开始,你的银行账户里有&nbsp;<code>100</code>&nbsp;块钱。</p>
10+
11+
<p>给你一个整数<code>purchaseAmount</code>&nbsp;,它表示你在一次购买中愿意支出的金额。</p>
12+
13+
<p>在一个商店里,你进行一次购买,实际支出的金额会向 <strong>最近</strong>&nbsp;&nbsp;<code>10</code>&nbsp;的 <strong>倍数</strong>&nbsp;取整。换句话说,你实际会支付一个&nbsp;<strong>非负</strong>&nbsp;金额&nbsp;<code>roundedAmount</code>&nbsp;,满足&nbsp;<code>roundedAmount</code>&nbsp;&nbsp;<code>10</code>&nbsp;的倍数且&nbsp;<code>abs(roundedAmount - purchaseAmount)</code>&nbsp;的值 <strong>最小</strong>&nbsp;。</p>
14+
15+
<p>如果存在多于一个最接近的 <code>10</code>&nbsp;的倍数,<strong>较大的倍数</strong>&nbsp;是你的实际支出金额。</p>
16+
17+
<p>请你返回一个整数,表示你在愿意支出金额为<em>&nbsp;</em><code>purchaseAmount</code><em>&nbsp;</em>块钱的前提下,购买之后剩下的余额。</p>
18+
19+
<p><strong>注意:</strong> <code>0</code>&nbsp;也是&nbsp;<code>10</code>&nbsp;的倍数。</p>
20+
21+
<p>&nbsp;</p>
22+
23+
<p><strong>示例 1:</strong></p>
24+
25+
<pre><b>输入:</b>purchaseAmount = 9
26+
<b>输出:</b>90
27+
<b>解释:</b>这个例子中,最接近 9 的 10 的倍数是 10 。所以你的账户余额为 100 - 10 = 90 。
28+
</pre>
29+
30+
<p><strong>示例 2:</strong></p>
31+
32+
<pre><b>输入:</b>purchaseAmount = 15
33+
<b>输出:</b>80
34+
<b>解释:</b>这个例子中,有 2 个最接近 15 的 10 的倍数:10 和 20,较大的数 20 是你的实际开销。
35+
所以你的账户余额为 100 - 20 = 80 。
36+
</pre>
37+
38+
<p>&nbsp;</p>
39+
40+
<p><strong>提示:</strong></p>
41+
42+
<ul>
43+
<li><code>0 &lt;= purchaseAmount &lt;= 100</code></li>
44+
</ul>
45+
46+
## 解法
47+
48+
<!-- 这里可写通用的实现逻辑 -->
49+
50+
**方法一:枚举 + 模拟**
51+
52+
我们在 $[0, 100]$ 的范围内枚举所有的 $10$ 的倍数,然后找到与 `purchaseAmount` 最接近的那个数,记为 $x$,那么答案就是 $100 - x$。
53+
54+
时间复杂度 $O(1)$,空间复杂度 $O(1)$。
55+
56+
<!-- tabs:start -->
57+
58+
### **Python3**
59+
60+
<!-- 这里可写当前语言的特殊实现逻辑 -->
61+
62+
```python
63+
class Solution:
64+
def accountBalanceAfterPurchase(self, purchaseAmount: int) -> int:
65+
diff, x = 100, 0
66+
for y in range(100, -1, -10):
67+
if (t := abs(y - purchaseAmount)) < diff:
68+
diff = t
69+
x = y
70+
return 100 - x
71+
```
72+
73+
### **Java**
74+
75+
<!-- 这里可写当前语言的特殊实现逻辑 -->
76+
77+
```java
78+
class Solution {
79+
public int accountBalanceAfterPurchase(int purchaseAmount) {
80+
int diff = 100, x = 0;
81+
for (int y = 100; y >= 0; y -= 10) {
82+
int t = Math.abs(y - purchaseAmount);
83+
if (t < diff) {
84+
diff = t;
85+
x = y;
86+
}
87+
}
88+
return 100 - x;
89+
}
90+
}
91+
```
92+
93+
### **C++**
94+
95+
```cpp
96+
class Solution {
97+
public:
98+
int accountBalanceAfterPurchase(int purchaseAmount) {
99+
int diff = 100, x = 0;
100+
for (int y = 100; y >= 0; y -= 10) {
101+
int t = abs(y - purchaseAmount);
102+
if (t < diff) {
103+
diff = t;
104+
x = y;
105+
}
106+
}
107+
return 100 - x;
108+
}
109+
};
110+
```
111+
112+
### **Go**
113+
114+
```go
115+
func accountBalanceAfterPurchase(purchaseAmount int) int {
116+
diff, x := 100, 0
117+
for y := 100; y >= 0; y -= 10 {
118+
t := abs(y - purchaseAmount)
119+
if t < diff {
120+
diff = t
121+
x = y
122+
}
123+
}
124+
return 100 - x
125+
}
126+
127+
func abs(x int) int {
128+
if x < 0 {
129+
return -x
130+
}
131+
return x
132+
}
133+
```
134+
135+
### **TypeScript**
136+
137+
```ts
138+
function accountBalanceAfterPurchase(purchaseAmount: number): number {
139+
let [diff, x] = [100, 0];
140+
for (let y = 100; y >= 0; y -= 10) {
141+
const t = Math.abs(y - purchaseAmount);
142+
if (t < diff) {
143+
diff = t;
144+
x = y;
145+
}
146+
}
147+
return 100 - x;
148+
}
149+
```
150+
151+
### **...**
152+
153+
```
154+
155+
```
156+
157+
<!-- tabs:end -->
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,143 @@
1+
# [2806. Account Balance After Rounded Purchase](https://leetcode.com/problems/account-balance-after-rounded-purchase)
2+
3+
[中文文档](/solution/2800-2899/2806.Account%20Balance%20After%20Rounded%20Purchase/README.md)
4+
5+
## Description
6+
7+
<p>Initially, you have a bank account balance of <code>100</code> dollars.</p>
8+
9+
<p>You are given an integer <code>purchaseAmount</code> representing the amount you will spend on a purchase in dollars.</p>
10+
11+
<p>At the store where you will make the purchase, the purchase amount is rounded to the <strong>nearest multiple</strong> of <code>10</code>. In other words, you pay a <strong>non-negative</strong> amount, <code>roundedAmount</code>, such that <code>roundedAmount</code> is a multiple of <code>10</code> and <code>abs(roundedAmount - purchaseAmount)</code> is <strong>minimized</strong>.</p>
12+
13+
<p>If there is more than one nearest multiple of <code>10</code>, the <strong>largest multiple</strong> is chosen.</p>
14+
15+
<p>Return <em>an integer denoting your account balance after making a purchase worth </em><code>purchaseAmount</code><em> dollars from the store.</em></p>
16+
17+
<p><strong>Note:</strong> <code>0</code> is considered to be a multiple of <code>10</code> in this problem.</p>
18+
19+
<p>&nbsp;</p>
20+
<p><strong class="example">Example 1:</strong></p>
21+
22+
<pre>
23+
<strong>Input:</strong> purchaseAmount = 9
24+
<strong>Output:</strong> 90
25+
<strong>Explanation:</strong> In this example, the nearest multiple of 10 to 9 is 10. Hence, your account balance becomes 100 - 10 = 90.
26+
</pre>
27+
28+
<p><strong class="example">Example 2:</strong></p>
29+
30+
<pre>
31+
<strong>Input:</strong> purchaseAmount = 15
32+
<strong>Output:</strong> 80
33+
<strong>Explanation:</strong> In this example, there are two nearest multiples of 10 to 15: 10 and 20. So, the larger multiple, 20, is chosen.
34+
Hence, your account balance becomes 100 - 20 = 80.
35+
</pre>
36+
37+
<p>&nbsp;</p>
38+
<p><strong>Constraints:</strong></p>
39+
40+
<ul>
41+
<li><code>0 &lt;= purchaseAmount &lt;= 100</code></li>
42+
</ul>
43+
44+
## Solutions
45+
46+
<!-- tabs:start -->
47+
48+
### **Python3**
49+
50+
```python
51+
class Solution:
52+
def accountBalanceAfterPurchase(self, purchaseAmount: int) -> int:
53+
diff, x = 100, 0
54+
for y in range(100, -1, -10):
55+
if (t := abs(y - purchaseAmount)) < diff:
56+
diff = t
57+
x = y
58+
return 100 - x
59+
```
60+
61+
### **Java**
62+
63+
```java
64+
class Solution {
65+
public int accountBalanceAfterPurchase(int purchaseAmount) {
66+
int diff = 100, x = 0;
67+
for (int y = 100; y >= 0; y -= 10) {
68+
int t = Math.abs(y - purchaseAmount);
69+
if (t < diff) {
70+
diff = t;
71+
x = y;
72+
}
73+
}
74+
return 100 - x;
75+
}
76+
}
77+
```
78+
79+
### **C++**
80+
81+
```cpp
82+
class Solution {
83+
public:
84+
int accountBalanceAfterPurchase(int purchaseAmount) {
85+
int diff = 100, x = 0;
86+
for (int y = 100; y >= 0; y -= 10) {
87+
int t = abs(y - purchaseAmount);
88+
if (t < diff) {
89+
diff = t;
90+
x = y;
91+
}
92+
}
93+
return 100 - x;
94+
}
95+
};
96+
```
97+
98+
### **Go**
99+
100+
```go
101+
func accountBalanceAfterPurchase(purchaseAmount int) int {
102+
diff, x := 100, 0
103+
for y := 100; y >= 0; y -= 10 {
104+
t := abs(y - purchaseAmount)
105+
if t < diff {
106+
diff = t
107+
x = y
108+
}
109+
}
110+
return 100 - x
111+
}
112+
113+
func abs(x int) int {
114+
if x < 0 {
115+
return -x
116+
}
117+
return x
118+
}
119+
```
120+
121+
### **TypeScript**
122+
123+
```ts
124+
function accountBalanceAfterPurchase(purchaseAmount: number): number {
125+
let [diff, x] = [100, 0];
126+
for (let y = 100; y >= 0; y -= 10) {
127+
const t = Math.abs(y - purchaseAmount);
128+
if (t < diff) {
129+
diff = t;
130+
x = y;
131+
}
132+
}
133+
return 100 - x;
134+
}
135+
```
136+
137+
### **...**
138+
139+
```
140+
141+
```
142+
143+
<!-- tabs:end -->
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
class Solution {
2+
public:
3+
int accountBalanceAfterPurchase(int purchaseAmount) {
4+
int diff = 100, x = 0;
5+
for (int y = 100; y >= 0; y -= 10) {
6+
int t = abs(y - purchaseAmount);
7+
if (t < diff) {
8+
diff = t;
9+
x = y;
10+
}
11+
}
12+
return 100 - x;
13+
}
14+
};
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
func accountBalanceAfterPurchase(purchaseAmount int) int {
2+
diff, x := 100, 0
3+
for y := 100; y >= 0; y -= 10 {
4+
t := abs(y - purchaseAmount)
5+
if t < diff {
6+
diff = t
7+
x = y
8+
}
9+
}
10+
return 100 - x
11+
}
12+
13+
func abs(x int) int {
14+
if x < 0 {
15+
return -x
16+
}
17+
return x
18+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
class Solution {
2+
public int accountBalanceAfterPurchase(int purchaseAmount) {
3+
int diff = 100, x = 0;
4+
for (int y = 100; y >= 0; y -= 10) {
5+
int t = Math.abs(y - purchaseAmount);
6+
if (t < diff) {
7+
diff = t;
8+
x = y;
9+
}
10+
}
11+
return 100 - x;
12+
}
13+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
class Solution:
2+
def accountBalanceAfterPurchase(self, purchaseAmount: int) -> int:
3+
diff, x = 100, 0
4+
for y in range(100, -1, -10):
5+
if (t := abs(y - purchaseAmount)) < diff:
6+
diff = t
7+
x = y
8+
return 100 - x
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
function accountBalanceAfterPurchase(purchaseAmount: number): number {
2+
let [diff, x] = [100, 0];
3+
for (let y = 100; y >= 0; y -= 10) {
4+
const t = Math.abs(y - purchaseAmount);
5+
if (t < diff) {
6+
diff = t;
7+
x = y;
8+
}
9+
}
10+
return 100 - x;
11+
}

0 commit comments

Comments
 (0)