0799-香槟塔

Raphael Liu Lv10

我们把玻璃杯摆成金字塔的形状,其中 第一层1 个玻璃杯, 第二层2 个,依次类推到第 100 层,每个玻璃杯
(250ml) 将盛有香槟。

从顶层的第一个玻璃杯开始倾倒一些香槟,当顶层的杯子满了,任何溢出的香槟都会立刻等流量的流向左右两侧的玻璃杯。当左右两边的杯子也满了,就会等流量的流向它们左右两边的杯子,依次类推。(当最底层的玻璃杯满了,香槟会流到地板上)

例如,在倾倒一杯香槟后,最顶层的玻璃杯满了。倾倒了两杯香槟后,第二层的两个玻璃杯各自盛放一半的香槟。在倒三杯香槟后,第二层的香槟满了 -
此时总共有三个满的玻璃杯。在倒第四杯后,第三层中间的玻璃杯盛放了一半的香槟,他两边的玻璃杯各自盛放了四分之一的香槟,如下图所示。

现在当倾倒了非负整数杯香槟后,返回第 ij 个玻璃杯所盛放的香槟占玻璃杯容积的比例( ij 都从0开始)。

**示例 1:**
**输入:** poured(倾倒香槟总杯数) = 1, query_glass(杯子的位置数) = 1, query_row(行数) = 1
**输出:** 0.00000
**解释:** 我们在顶层(下标是(0,0))倒了一杯香槟后,没有溢出,因此所有在顶层以下的玻璃杯都是空的。

**示例 2:**
**输入:** poured(倾倒香槟总杯数) = 2, query_glass(杯子的位置数) = 1, query_row(行数) = 1
**输出:** 0.50000
**解释:** 我们在顶层(下标是(0,0)倒了两杯香槟后,有一杯量的香槟将从顶层溢出,位于(1,0)的玻璃杯和(1,1)的玻璃杯平分了这一杯香槟,所以每个玻璃杯有一半的香槟。

示例 3:

**输入:** poured = 100000009, query_row = 33, query_glass = 17
**输出:** 1.00000

提示:

  • 0 <= poured <= 109
  • 0 <= query_glass <= query_row < 100

方法一:模拟

思路

可以模拟倒香槟过程。首先将所有的 poured 杯香槟全部倒到 row} = 0 的这个杯子中。当有溢出时,再将溢出的部分平均倒到下一层的相邻的两个杯子中。而除了 row} = 0 的这个杯子中的香槟是直接来自于外部,其他杯子中的香槟均来自于它的上一层的相邻的一个或两个杯子中溢出的香槟。根据这个思路,可以求出每一层的每一只杯子中的香槟体积。求出 row} = \textit{query_row 的杯子的香槟体积后,取第 query_glass 个杯子中的体积,并与 1 求最小值返回。

代码

[sol1-Python3]
1
2
3
4
5
6
7
8
9
10
11
class Solution:
def champagneTower(self, poured: int, query_row: int, query_glass: int) -> float:
row = [poured]
for i in range(1, query_row + 1):
nextRow = [0] * (i + 1)
for j, volume in enumerate(row):
if volume > 1:
nextRow[j] += (volume - 1) / 2
nextRow[j + 1] += (volume - 1) / 2
row = nextRow
return min(1, row[query_glass])
[sol1-Java]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
class Solution {
public double champagneTower(int poured, int query_row, int query_glass) {
double[] row = {poured};
for (int i = 1; i <= query_row; i++) {
double[] nextRow = new double[i + 1];
for (int j = 0; j < i; j++) {
double volume = row[j];
if (volume > 1) {
nextRow[j] += (volume - 1) / 2;
nextRow[j + 1] += (volume - 1) / 2;
}
}
row = nextRow;
}
return Math.min(1, row[query_glass]);
}
}
[sol1-C#]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
public class Solution {
public double ChampagneTower(int poured, int query_row, int query_glass) {
double[] row = {poured};
for (int i = 1; i <= query_row; i++) {
double[] nextRow = new double[i + 1];
for (int j = 0; j < i; j++) {
double volume = row[j];
if (volume > 1) {
nextRow[j] += (volume - 1) / 2;
nextRow[j + 1] += (volume - 1) / 2;
}
}
row = nextRow;
}
return Math.Min(1, row[query_glass]);
}
}
[sol1-C++]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
class Solution {
public:
double champagneTower(int poured, int query_row, int query_glass) {
vector<double> row = {(double)poured};
for (int i = 1; i <= query_row; i++) {
vector<double> nextRow(i + 1, 0.0);
for (int j = 0; j < row.size(); j++) {
double volume = row[j];
if (volume > 1) {
nextRow[j] += (volume - 1) / 2;
nextRow[j + 1] += (volume - 1) / 2;
}
}
row = nextRow;
}
return min(1.0, row[query_glass]);
}
};
[sol1-C]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#define MIN(a, b) ((a) < (b) ? (a) : (b))

double champagneTower(int poured, int query_row, int query_glass) {
double row[query_row + 2];
int rowSize = 1;
row[0] = poured;
for (int i = 1; i <= query_row; i++) {
double nextRow[i + 1];
for (int j = 0; j <= i; j++) {
nextRow[j] = 0.0;
}
for (int j = 0; j < rowSize; j++) {
double volume = row[j];
if (volume > 1) {
nextRow[j] += (volume - 1) / 2;
nextRow[j + 1] += (volume - 1) / 2;
}
}
memcpy(row, nextRow, sizeof(double) * (i + 1));
rowSize = i + 1;
}
return MIN(1.0, row[query_glass]);
}
[sol1-JavaScript]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
var champagneTower = function(poured, query_row, query_glass) {
let row = [poured];
for (let i = 1; i <= query_row; i++) {
const nextRow = new Array(i + 1).fill(0);
for (let j = 0; j < i; j++) {
const volume = row[j];
if (volume > 1) {
nextRow[j] += (volume - 1) / 2;
nextRow[j + 1] += (volume - 1) / 2;
}
}
row = nextRow;
}
return Math.min(1, row[query_glass]);
};
[sol1-Golang]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
func champagneTower(poured, queryRow, queryGlass int) float64 {
row := []float64{float64(poured)}
for i := 1; i <= queryRow; i++ {
nextRow := make([]float64, i+1)
for j, volume := range row {
if volume > 1 {
nextRow[j] += (volume - 1) / 2
nextRow[j+1] += (volume - 1) / 2
}
}
row = nextRow
}
return math.Min(1, row[queryGlass])
}

复杂度分析

  • 时间复杂度:O(query_row^2)。使用了两层 for 循环。

  • 空间复杂度:O(query_row)。使用滚动数组实现的空间复杂度是 O(query_row)。

 Comments
On this page
0799-香槟塔