题目描述
给你一个下标从 0 开始的整数数组 nums
。
现定义两个数字的 串联 是由这两个数值串联起来形成的新数字。
nums
的 串联值 最初等于 0
。执行下述操作直到 nums
变为空:
- 如果
nums
中存在不止一个数字,分别选中 nums
中的第一个元素和最后一个元素,将二者串联得到的值加到 nums
的 串联值 上,然后从 nums
中删除第一个和最后一个元素。
- 如果仅存在一个元素,则将该元素的值加到
nums
的串联值上,然后删除这个元素。
返回执行完所有操作后 nums
的串联值。
示例 1:
输入:nums = [7,52,2,4]
输出:596
解释:在执行任一步操作前,nums 为 [7,52,2,4] ,串联值为 0 。
- 在第一步操作中:
我们选中第一个元素 7 和最后一个元素 4 。
二者的串联是 74 ,将其加到串联值上,所以串联值等于 74 。
接着我们从 nums 中移除这两个元素,所以 nums 变为 [52,2] 。
- 在第二步操作中:
我们选中第一个元素 52 和最后一个元素 2 。
二者的串联是 522 ,将其加到串联值上,所以串联值等于 596 。
接着我们从 nums 中移除这两个元素,所以 nums 变为空。
由于串联值等于 596 ,所以答案就是 596 。
示例 2:
输入:nums = [5,14,13,8,12]
输出:673
解释:在执行任一步操作前,nums 为 [5,14,13,8,12] ,串联值为 0 。
- 在第一步操作中:
我们选中第一个元素 5 和最后一个元素 12 。
二者的串联是 512 ,将其加到串联值上,所以串联值等于 512 。
接着我们从 nums 中移除这两个元素,所以 nums 变为 [14,13,8] 。
- 在第二步操作中:
我们选中第一个元素 14 和最后一个元素 8 。
二者的串联是 148 ,将其加到串联值上,所以串联值等于 660 。
接着我们从 nums 中移除这两个元素,所以 nums 变为 [13] 。
- 在第三步操作中:
nums 只有一个元素,所以我们选中 13 并将其加到串联值上,所以串联值等于 673 。
接着我们从 nums 中移除这个元素,所以 nums 变为空。
由于串联值等于 673 ,所以答案就是 673 。
提示:
1 <= nums.length <= 1000
1 <= nums[i] <= 104
解法
方法一:模拟
从数组两端开始,每次取出一个元素,将其与另一个元素拼接,然后将拼接后的结果加到答案中。重复这个过程,直到数组为空。
时间复杂度 $O(n \times \log M)$,空间复杂度 $O(\log M)$。其中 $n$ 和 $M$ 分别是数组的长度和数组中的最大值。
| class Solution:
def findTheArrayConcVal(self, nums: List[int]) -> int:
ans = 0
i, j = 0, len(nums) - 1
while i < j:
ans += int(str(nums[i]) + str(nums[j]))
i, j = i + 1, j - 1
if i == j:
ans += nums[i]
return ans
|
1
2
3
4
5
6
7
8
9
10
11
12
13 | class Solution {
public long findTheArrayConcVal(int[] nums) {
long ans = 0;
int i = 0, j = nums.length - 1;
for (; i < j; ++i, --j) {
ans += Integer.parseInt(nums[i] + "" + nums[j]);
}
if (i == j) {
ans += nums[i];
}
return ans;
}
}
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14 | class Solution {
public:
long long findTheArrayConcVal(vector<int>& nums) {
long long ans = 0;
int i = 0, j = nums.size() - 1;
for (; i < j; ++i, --j) {
ans += stoi(to_string(nums[i]) + to_string(nums[j]));
}
if (i == j) {
ans += nums[i];
}
return ans;
}
};
|
| func findTheArrayConcVal(nums []int) (ans int64) {
i, j := 0, len(nums)-1
for ; i < j; i, j = i+1, j-1 {
x, _ := strconv.Atoi(strconv.Itoa(nums[i]) + strconv.Itoa(nums[j]))
ans += int64(x)
}
if i == j {
ans += int64(nums[i])
}
return
}
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15 | function findTheArrayConcVal(nums: number[]): number {
const n = nums.length;
let ans = 0;
let i = 0;
let j = n - 1;
while (i < j) {
ans += Number(`${nums[i]}${nums[j]}`);
i++;
j--;
}
if (i === j) {
ans += nums[i];
}
return ans;
}
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 | impl Solution {
pub fn find_the_array_conc_val(nums: Vec<i32>) -> i64 {
let n = nums.len();
let mut ans = 0;
let mut i = 0;
let mut j = n - 1;
while i < j {
ans += format!("{}{}", nums[i], nums[j]).parse::<i64>().unwrap();
i += 1;
j -= 1;
}
if i == j {
ans += nums[i] as i64;
}
ans
}
}
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23 | int getLen(int num) {
int res = 0;
while (num) {
num /= 10;
res++;
}
return res;
}
long long findTheArrayConcVal(int* nums, int numsSize) {
long long ans = 0;
int i = 0;
int j = numsSize - 1;
while (i < j) {
ans += nums[i] * pow(10, getLen(nums[j])) + nums[j];
i++;
j--;
}
if (i == j) {
ans += nums[i];
}
return ans;
}
|
方法二