输出:
1
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
python解法
- 解题思路:
- 这段代码的任务是根据输入的人员数量、能力值以及组成团队所需的能力值,计算可以组成的团队数量。具体规则如下:
如果某人的能力值大于等于所需的能力值 required_cap,则该人可以单独组成一个团队。
如果某两人的能力值之和大于等于 required_cap,他们可以组成一个团队。
输出满足以上条件的团队总数。
实现步骤:
将能力值分为两组:单独可以组成团队的 (solo_teams) 和需要配对的 (remaining)。
对于需要配对的成员,按照能力值从小到大排序,使用双指针方法,从两端开始配对,如果配对成功(两人能力值之和大于等于 required_cap),则计入团队,更新指针。
最后统计单独组队的人数和配对成功的团队数量,返回总数
def calculate_teams(count, abilities, required_cap):
solo_teams = [x for x in abilities if x >= required_cap]
remaining = sorted([x for x in abilities if x < required_cap])
paired = []
i, j = 0, len(remaining) - 1
while i < j:
if remaining[i] + remaining[j] >= required_cap:
paired.append((remaining[i], remaining[j]))
i += 1
j -= 1
else:
i += 1
return len(solo_teams) + len(paired)
count = int(input())
abilities = list(map(int, input().split()))
required_cap = int(input())
print(calculate_teams(count, abilities, required_cap))
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
java解法
- 解题思路
- 这段代码旨在计算满足条件的最大团队数。组队的规则与前面类似:
能力值大于等于所需值的成员可以独立组队。
如果两人的能力值之和大于等于所需值,他们可以组合成一个团队。
实现步骤:
对输入的能力值数组进行排序。
从数组的右端开始(最大值)找到可以独立组队的成员,统计他们的数量。
对于剩余的成员,使用双指针方法尝试配对:
如果两端之和大于等于所需值,则配对成功,计入团队数量,同时移动指针。
如果之和小于所需值,则左指针右移,尝试提高组合的总和。
返回所有团队的数量。
import java.util.Arrays;
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int total = Integer.parseInt(scanner.nextLine());
int[] abilities = Arrays.stream(scanner.nextLine().split(" ")).mapToInt(Integer::parseInt).toArray();
int minRequirement = Integer.parseInt(scanner.nextLine());
System.out.println(maxTeams(total, abilities, minRequirement));
}
public static int maxTeams(int total, int[] abilities, int minReq) {
Arrays.sort(abilities);
int left = 0;
int right = total - 1;
int teamCount = 0;
while (right >= left && abilities[right] >= minReq) {
right--;
teamCount++;
}
while (left < right) {
int combined = abilities[left] + abilities[right];
if (combined >= minReq) {
teamCount++;
left++;
right--;
} else {
left++;
}
}
return teamCount;
}
}
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
C++解法
- 解题思路
- 这段代码的任务是计算满足条件的最大团队数,规则如下:
如果某人的能力值大于等于团队最低需求 minReq,该人可以单独组成一个团队。
如果两人的能力值之和大于等于 minReq,他们可以组成一个团队。
具体步骤如下:
对输入的能力值数组进行排序,从小到大排列,以便于使用双指针方法。
从右端开始,找到能力值大于等于 minReq 的人,他们可以独立组队。
对于剩下的成员,使用双指针方法尝试配对:
如果两端之和大于等于 minReq,配对成功,计入团队数量。
如果之和小于 minReq,左指针右移以尝试提高组合的总和。
返回所有团队的数量
#include
#include
#include
using namespace std;
int maxTeams(int total, vector<int>& abilities, int minReq) {
sort(abilities.begin(), abilities.end());
int left = 0;
int right = total - 1;
int teamCount = 0;
while (right >= left && abilities[right] >= minReq) {
right--;
teamCount++;
}
while (left < right) {
int combined = abilities[left] + abilities[right];
if (combined >= minReq) {
teamCount++;
left++;
right--;
}
else {
left++;
}
}
return teamCount;
}
int main() {
int total;
cin >> total;
vector<int> abilities(total);
for (int i = 0; i < total; i++) {
cin >> abilities[i];
}
int minRequirement;
cin >> minRequirement;
cout << maxTeams(total, abilities, minRequirement) << endl;
return 0;
}
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
C解法
更新中
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
JS解法
-
解题思路
-
这段代码的目的是计算最大团队数量,规则如下:
如果某人的能力值(skills)大于或等于团队最低需求值(threshold),该人可以单独组队。
如果两人的能力值之和大于或等于 threshold,他们可以组成一个团队。
具体步骤:
对输入的能力值数组进行排序,降序排列,使较大的值优先被处理。
遍历数组前部,统计单独组队的成员数量。
使用双指针方法处理剩余的成员:
如果两个指针对应的成员能力值之和大于或等于 threshold,他们可以配对组成团队。
如果不能配对,则移动右指针,尝试寻找更小的值进行组合
const readline = require("readline");
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout,
});
const lines = [];
rl.on("line", (line) => {
lines.push(line);
if (lines.length === 3) {
let count = parseInt(lines[0]);
let skills = lines[1].split(" ").slice(0, count).map(Number);
let threshold = parseInt(lines[2]);
console.log(calculateTeams(count, skills, threshold));
lines.length = 0;
}
});
function calculateTeams(count, skills, threshold) {
skills.sort((x, y) => y - x);
let index = 0;
let pairs = 0;
while (index < count && skills[index] >= threshold) {
pairs++;
index++;
}
let left = count - 1;
while (index < left) {
if (skills[index] + skills[left] >= threshold) {
pairs++;
index++;
left--;
} else {
left--;
}
}
return pairs;
}
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
注意:
如果发现代码有用例覆盖不到的情况,欢迎反馈!会在第一时间修正,更新。
解题不易,如对您有帮助,欢迎点赞/收藏
评论记录:
回复评论: