英文:
Count total of number array with ignoring overlap number
问题
我有这样一个问题,想用JavaScript/Go来解决。给定这个数字集合的数组,我想找到数字的总和。计算应该忽略重叠部分,并将其视为仅计算一次。
const nums = [[10, 26], [43, 60], [24,31], [40,50], [13, 19]]
如果将其转化为图像,应该是这样的。
结果应该是41。
规则如下:
- 重叠的数字集合(粉色区域)应该只计算一次。
- 计算绿色区域的总和。
- 两者相加。
任何帮助将不胜感激。
英文:
I have this kind of problem and trying to solve it by using Javascript/Go. Given this array of number set, I would like to find the sum of number. The calculation should ignore the overlap and consider to count it as only once.
const nums = [[10, 26], [43, 60], [24,31], [40,50], [13, 19]]
It would be something like following if translated into the picture.
The result should 41
The rules are
- Overlap set of number (pink area) should be count once.
- Count total sum of green area.
- Total for both.
Any help will be appreciated.
答案1
得分: 1
这是一个使用JavaScript的一行代码解决方案(假设正确答案是41
而不是42
)。
思路是遍历所有的区间数字,并将它们放入一个单独的数组中,然后使用Set
去除所有的重复项。时间复杂度不是最优的,但足够简洁。
const nums = [[10, 26], [43, 60], [24, 31], [40, 50], [13, 19]];
const total = new Set(nums.reduce((acc, [from, to]) =>
[...acc, ...Array.from({ length: to - from }, (_, i) => i + from)], [])).size;
console.log(total);
不确定如何在go中实现,但这只是一个提议。
英文:
Here's an one-liner solution using javascript (Assuming the correct answer is 41
instead of 42
).
The idea is to iterate all interval numbers and put them in a single array, then trim all the duplicates using Set
. The time complexity is not optimal but it's short enough.
<!-- begin snippet: js hide: false console: true babel: false -->
<!-- language: lang-js -->
const nums = [[10, 26], [43, 60], [24, 31], [40, 50], [13, 19]];
const total = new Set(nums.reduce((acc, [from, to]) =>
[...acc, ...Array.from({ length: to - from }, (_, i) => i + from)], [])).size;
console.log(total);
<!-- end snippet -->
Not sure how to do it with go but it's just a proposal.
答案2
得分: 1
这是我的版本:
const getCoverage = arr => arr
.reduce((results, el) => {
if (!results.length) {
return [el];
}
let running = true, i = 0;
while(running && i < results.length) {
if (el.some(n => n >= results[i][0] && n <= results[i][1])) {
results[i] = [
Math.min(el[0], results[i][0]),
Math.max(el[1], results[i][1])
];
running = false;
}
i++;
}
if (running) {
results.push(el);
}
return results;
}, [])
.reduce((total, el) => el[1] - el[0] + total, 0);
console.log(
getCoverage([[10, 26], [43, 60], [24,31], [40,50], [13, 19]])
);
第一个 reducer 合并重叠(和相邻的)区间,第二个 reducer 将合并后的区间的差值相加。
英文:
Here's my version:
<!-- begin snippet: js hide: false console: true babel: false -->
<!-- language: lang-js -->
const getCoverage = arr => arr
.reduce((results, el) => {
if (!results.length) {
return [el];
}
let running = true, i = 0;
while(running && i < results.length) {
if (el.some(n => n >= results[i][0] && n <= results[i][1])) {
results[i] = [
Math.min(el[0], results[i][0]),
Math.max(el[1], results[i][1])
];
running = false;
}
i++;
}
if (running) {
results.push(el);
}
return results;
}, [])
.reduce((total, el) => el[1] - el[0] + total, 0);
console.log(
getCoverage([[10, 26], [43, 60], [24,31], [40,50], [13, 19]])
);
<!-- end snippet -->
The first reducer merges overlapping (and adjacent) intervals and the second one adds up the diffs from the resulting merged ones.
答案3
得分: 1
你可以通过对这些对进行排序并检查第二个值来进行简化,然后通过计算差值来获取总和。
const
nums = [[10, 26], [43, 60], [24, 31], [40, 50], [13, 19]],
result = nums
.sort((a, b) => a[0] - b[0] || a[1] - b[1])
.reduce((r, [...a]) => {
const last = r[r.length - 1];
if (last && last[1] >= a[0]) last[1] = Math.max(last[1], a[1]);
else r.push(a);
return r;
}, [])
.reduce((s, [l, r]) => s + r - l, 0);
console.log(result)
英文:
You could sort the pairs and reduce by checking the second value and then add the deltas for getting the sum.
<!-- begin snippet: js hide: false console: true babel: false -->
<!-- language: lang-js -->
const
nums = [[10, 26], [43, 60], [24, 31], [40, 50], [13, 19]],
result = nums
.sort((a, b) => a[0] - b[0] || a1 - b1)
.reduce((r, [...a]) => {
const last = r[r.length - 1];
if (last && last1 >= a[0]) last1 = Math.max(last1, a1);
else r.push(a);
return r;
}, [])
.reduce((s, [l, r]) => s + r - l, 0);
console.log(result)
<!-- end snippet -->
答案4
得分: 0
你可以将给定的二维数组的值展开到一个数组中,并对它们进行排序。
找到非重叠数组的边界值之间的差值的和,以及重叠区域内值的差值的和,两者之间的差值将是结果。
const nums = [[10, 26], [43, 60], [24, 31], [40, 50], [13, 19]]
let arr = []
//将给定的二维数组展开
nums.forEach(item => arr=[...arr,...item]);
// 对两个数组进行排序
arr.sort();
nums.sort();
let previtem, sum = 0;
let min , max ;
let count = 0;
//循环计算非重叠值之间的差值的和
nums.forEach((item,index) => {
if (index === 0) {
min = nums[0][0], max = nums[0][1]
}
else if (!(item[0]>min && item[0]<max) && !(item[1]>min && item[1]<max))
{
flag = 1;
count = count + (item[0] - max);
min = item[0];
max = item[1];
console.log(item,count);
}
else if (item[0]>min && item[0]<max && !(item[1]>min && item[1]<max)) {
max = item[1];
}
})
// 循环计算重叠区域内唯一值的差值的和
arr.forEach(item => {
if (previtem && item !== previtem) {
sum=sum+(item-previtem)
}
previtem = item;
})
// 打印结果
console.log(sum - count);
英文:
You can spread the values of given 2-D array in an array and sort both of them.
Find the sum of the differences between the edge values of non-overlapping arrays and the sum of difference of values within overlapping area and the result will be the difference between the two.
const nums = [[10, 26], [43, 60], [24, 31], [40, 50], [13, 19]]
let arr = []
//spread given 2-D array
nums.forEach(item => arr=[...arr,...item]);
// Sort both arrays
arr.sort();
nums.sort();
let previtem, sum = 0;
let min , max ;
let count = 0;
//Loop to find sum of difference between non-overlapping values
nums.forEach((item,index) => {
if (index === 0) {
min = nums[0][0], max = nums[0][1]
}
else if (!(item[0]>min && item[0]<max) && !(item[1]>min && item[1]<max))
{
flag = 1;
count = count + (item[0] - max);
min = item[0];
max = item[1];
console.log(item,count);
}
else if (item[0]>min && item[0]<max && !(item[1]>min && item[1]<max)) {
max = item[1];
}
})
// loop to find sum of difference of unique values within overlapping area
arr.forEach(item => {
if (previtem && item !== previtem) {
sum=sum+(item-previtem)
}
previtem = item;
})
//Print the result
console.log(sum - count);
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论