- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我一直在努力解决这个挑战,并且有点想知道该怎么做。但是经过我所有的尝试,我只能通过测试用例,并且在提交面板中还有一个案例。之后一切都失败了
问题:
一家公司要求简化其产品分配策略,给定 n 个产品,每个产品都有一个关联值,您需要将这些产品排列成多个段进行处理。有无限段索引为 1、2、3 等。
但是,有两个限制条件:
分割市场的分数定义为分割市场的指数乘以其包含的产品的值(value)总和。产品排列的分数是段分数的总和。您的任务是计算排列的最高分数。
例如,考虑 n = 11 种产品和 m = 3。一种最佳分配方式是 -
请注意,我们不能将 2 个产品分配给分割市场 4,因为这会违反第二个约束条件。以上排列的分数为-
1 * (1 + 2 + 3) + 2 * (4 + 5 + 6) + 3 * (7 + 8 + 9 + 10 + 11) = 6 + 30 + 135 = 171。
由于排列分数可能非常大,打印它模 10^9 + 7。
输入格式
第一行有两个用空格分隔的整数n和m。
在第二行中,有 n 个以空格分隔的整数 a0,a1,....,an-1 表示与产品关联的值。
约束
输出格式
在一行中,打印一个整数,表示以 10^9 + 7 为模的排列的最大分数。
示例输入 0
5 2
1 5 4 2 3
示例输出 0
27
解释 0
数组为a = [1,5,4,2,3],m = 2。最优的是将第一个和第四个产品放在第一段,其余产品放在第二段。这样做,我们得到排列分数 (1+2) * 1 + (3+4+5) * 2 = 27 这是可以获得的最大分数。最后,答案是模 10^9 + 7,即 27。
示例输入 1
4 4
4 1 9 7
示例输出 1
21
解释一
所有四种产品都必须放在第一段中。这种情况下的分数将为 1 * (4 + 1 + 9 + 7) = 21。
我的解决方案
现在我的算法解释了我的想法:
- To check if the array length == m, if yes, return the sum of all elements
- If not, take start = 0 and end = m, as a pointer which will take care of the sum of the elements till that part
start -> end
- Sort the array for best results
- Take batch = 1, which will be incremented in a while loop, and multiplied with the sum of the limited products array
- For remaining elements in the array, do same operation
batch * (sum of elements from start till end)
- Add it to the maxSum and return the maxSum
代码
def maxScore(segment, products):
# Write your code here
# If the segment == products, then it should return all the sum
# We will evaluate as per the products listing requirement and find the sum
'''
Algo for else condition
1. We will maintain a start and end pointer to keep a check till counter equals products
2. We will keep adding the maxSum of the value [i * sum(batch of the element)]
3. Come out of the loop and perform a final operation as above with the remaining elements
4. Add it to sum
5. Return maxSum
'''
batch = 1
maxSum = 0
start = 0
end = products
segment.sort()
if len(segment) == products:
maxSum += (batch * sumElem(segment[start:len(segment)]))
else:
while batch != products:
maxSum += (batch * sumElem(segment[start:end]))
batch += 1
start += products
end += products
maxSum += (batch * sumElem(segment[start:len(segment)]))
return maxSum
# function to find the sum of the elements
def sumElem(arr):
total = 0
for item in arr: total += item
return total
另一个解决方案:
def maxScore(segment, products):
# Write your code here
# If the segment == products, then it should return all the sum
# We will evaluate as per the products listing requirement and find the sum
'''
Algo for else condition
1. We will maintain a start and end pointer to keep a check till counter equals products
2. We will keep adding the maxSum of the value [i * sum(batch of the element)]
3. Come out of the loop and perform a final operation as above with the remaining elements
4. Add it to sum
5. Return maxSum
'''
batch = 1
maxSum = 0
start = 0
end = products
segment.sort()
while batch != products:
maxSum += (batch * sumElem(segment[start:end]))
batch += 1
start += products
end += products
maxSum += (batch * sumElem(segment[start:len(segment)]))
return maxSum
# function to find the sum of the elements
def sumElem(arr):
total = 0
for item in arr: total += item
return total
在所有测试之后,代码对于所有可见的测试用例都运行良好,但没有通过 HackerRank 上的任何隐藏测试用例
。我需要一些帮助,我想在理解这个问题时发生了某种误解,因为解决方案对我来说似乎很好
最佳答案
我们首先对给定的数组进行排序。这是因为我们最终“分段”的数字越大,总和就会越大,而且它会乘以分段的索引,从而使输出最大化。
解决该问题的简单逻辑是找到具有m
产品的最大段数。在示例输入中,对于输入 n=5
,m=2
:我们最多可以用 2 个产品形成 1 个分割市场,因为如果我们用 2 个产品分割为 2 个分割市场,最后我们只剩下 1 个产品,我们无法对其进行分割(根据问题)。
为了实现这一点,我们将字符串的长度除以 m
,如果不能完全整除,则从中减去 1。
def maxScore(a, m):
a.sort()
print(a)
x=len(a)
if x%m==0:
y=int(x/m)
else:
y=int(x/m)-1
summ=0
count=1
#print(y)
i=0
for _ in range(y):
summ=summ+(sum(a[i:i+m])*count)
count=count+1
i=i+m
print(summ)
summ=summ+sum(a[i:])*count
print(summ)
return summ%1000000007
关于arrays - HackerRank 产品分布,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61417417/
在 C 中: int a[10]; printf("%p\n", a); printf("%p\n", &a[0]); 产量: 0x7fff5606c600 0x7fff5606c600 这是我所期望
我一直在尝试运行此循环来更改基于数组的元素的位置,但出现以下错误。不太确定哪里出了问题。任何想法或想法!谢谢。 var population = [[98, 8, 45, 34, 56], [9, 1
我正在尝试获取一个 Ruby 数组数组并将其分组以计算其值。 数组有一个月份和一个 bool 值: array = [["June", false], ["June", false], ["June"
所以我们的目标是在遇到某个元素时将数组分割成子数组下面的示例 array.split("stop here") ["haii", "keep", "these in the same array bu
在this问题已经回答了两个表达式是相等的,但在这种情况下它们会产生不同的结果。对于给定的 int[] 分数,为什么会这样: Arrays.stream(scores) .forEac
我认为我需要的是哈希数组的数组,但我不知道如何制作它。 Perl 能做到吗? 如果是这样,代码会是什么样子? 最佳答案 perldoc perldsc是了解 Perl 数据结构的好文档。 关于arra
我遇到了这个问题,从 API 中我得到一个扩展 JSON,其中包含一个名为坐标的对象,该对象是一个包含数组 o 数组的数组。 为了更清楚地看这个例子: "coordinates": [
postgres 中有(v 9.5,如果重要的话): create table json_test( id varchar NOT NULL, data jsonb NOT NULL, PRIM
我用 echo "${array[@]}" 和 echo "${array[*]}" 得到了相同的结果。 如果我这样做: mkdir 假音乐; touch fakemusic/{Beatles,Sto
我正在尝试创建 typealias 对象的数组数组 - 但我收到“表达式类型不明确,没有更多上下文”编译错误。这是我的代码: typealias TestClosure = ((message: St
如果您在 Python 中创建一维数组,使用 NumPy 包有什么好处吗? 最佳答案 这完全取决于您打算如何处理数组。如果您所做的只是创建简单数据类型的数组并进行 I/O,array模块就可以了。 另
当我将数组推送到只有一个数组作为其唯一元素的数组数组时,为什么会得到这种数据结构? use v6; my @d = ( [ 1 .. 3 ] ); @d.push( [ 4 .. 6 ] ); @d.
在 Julia 中,我想将定义为二维数组向量的数据转换为二维矩阵数组。 如下例所述,我想把数据s转换成数据t,但是至今没有成功。 我该如何处理这个案子? julia> s = [[1 2 3], [4
C 没有elementsof 关键字来获取数组的元素数。所以这通常由计算 sizeof(Array)/sizeof(Array[0]) 代替但这需要重复数组变量名。1[&Array] 是指向数组后第一
所以,假设我有一个像这样的(愚蠢的)函数: function doSomething(input: number|string): boolean { if (input === 42 || in
我有以下数组: a = [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16] 我将它用于一些像这样的视觉内容: 1 2 3 4 5 6 7 8 9 10
我想知道数组中的 .toList 与 .to[List] 之间有什么区别。我在spark-shell中做了这个测试,结果没有区别,但我不知道用什么更好。任何意见? scala> val l = Arr
我很难获得完全相同对象的多个元素的当前元素索引: $b = "A","D","B","D","C","E","D","F" $b | ? { $_ -contains "D" } 替代版本: $b =
我正在尝试使用来自我的 API 的 v-select 执行 options,我将数据放在数组数组中。 Array which I got from API 它应该是一个带有搜索的 select,因为它
这个问题在这里已经有了答案: String literals: pointer vs. char array (1 个回答) 4 个月前关闭。 当我执行下一个代码时 int main() {
我是一名优秀的程序员,十分优秀!