农场主人有一头聪明的牛,这头牛非常善于学习和模仿,甚至可以理解和模仿人类的语言。农场主人为了训练这头牛,就设计了一个游戏。他会给这头牛一些不同重量的草料,并告诉这头牛需要吃到的总重量。这头牛需要计算最少需要吃几块草料才能达到总重量。你需要帮农场主人编写一个程序,计算这头牛最少需要吃几块草料才能达到总重量,无法准确达到这个重量则输出-1.
示例1
输入
[1, 3, 5],7
输出
3
说明
7=5+1+1
示例2
输入
[7, 2, 3],20
输出
4
说明
20=7+7+3+3
备注:
1 weights.length 1 weights[i] 0 totalWeight
加载中...
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param weights int整型一维数组 * @param totalWeight int整型 * @return int整型 */ public int minEatTimes (int[] weights, int totalWeight) { // write code here } }
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param weights int整型vector * @param totalWeight int整型 * @return int整型 */ int minEatTimes(vector
& weights, int totalWeight) { // write code here } };
#coding:utf-8 # # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param weights int整型一维数组 # @param totalWeight int整型 # @return int整型 # class Solution: def minEatTimes(self , weights , totalWeight ): # write code here
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param weights int整型一维数组 * @param totalWeight int整型 * @return int整型 */ public int minEatTimes (List
weights, int totalWeight) { // write code here } }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param weights int整型一维数组 * @param totalWeight int整型 * @return int整型 */ function minEatTimes( weights , totalWeight ) { // write code here } module.exports = { minEatTimes : minEatTimes };
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param weights int整型一维数组 # @param totalWeight int整型 # @return int整型 # class Solution: def minEatTimes(self , weights: List[int], totalWeight: int) -> int: # write code here
package main import "fmt" /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param weights int整型一维数组 * @param totalWeight int整型 * @return int整型 */ func minEatTimes( weights []int , totalWeight int ) int { // write code here }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param weights int整型一维数组 * @param weightsLen int weights数组长度 * @param totalWeight int整型 * @return int整型 */ int minEatTimes(int* weights, int weightsLen, int totalWeight ) { // write code here }
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param weights int整型一维数组 # @param totalWeight int整型 # @return int整型 # class Solution def minEatTimes(weights, totalWeight) # write code here end end
object Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param weights int整型一维数组 * @param totalWeight int整型 * @return int整型 */ def minEatTimes(weights: Array[Int],totalWeight: Int): Int = { // write code here } }
object Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param weights int整型一维数组 * @param totalWeight int整型 * @return int整型 */ fun minEatTimes(weights: IntArray,totalWeight: Int): Int { // write code here } }
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param weights int整型一维数组 * @param totalWeight int整型 * @return int整型 */ public int minEatTimes (int[] weights, int totalWeight) { // write code here } }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param weights int整型一维数组 * @param totalWeight int整型 * @return int整型 */ export function minEatTimes(weights: number[], totalWeight: number): number { // write code here }
public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param weights int整型一维数组 * @param totalWeight int整型 * @return int整型 */ func minEatTimes ( _ weights: [Int], _ totalWeight: Int) -> Int { // write code here } }
struct Solution{ } impl Solution { fn new() -> Self { Solution{} } /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param weights int整型一维数组 * @param totalWeight int整型 * @return int整型 */ pub fn minEatTimes(&self, weights: Vec
, totalWeight: i32) -> i32 { // write code here } }
[1, 3, 5],7
3
[7, 2, 3],20
4