- 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
java解法
m:表示额外的时间(用于限制任务大小)。
f:任务频率的数组,表示每个任务出现的次数(频率)。
s:任务大小的数组,表示每个任务的所需时间。
核心思路:
统计每个频率出现的次数(count)。
对于每个频率,存储对应的任务大小(size)。我们只需要记录第一次遇到的任务大小,因为频率相同的任务应该具有相同的大小。
计算任务的总时间:
对于每个频率 k:
计算出该频率任务的总扫描时间(scanCost = count[k] * size[k])。
计算任务的缓存成本(cacheCost = size[k] + m),即任务大小加上额外的时间。
任务的最终时间应该是 scanCost 和 cacheCost 的最小值。
返回结果:
将所有任务的最小时间加起来,得到最终的总时间
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int m = Integer.parseInt(sc.nextLine());
Integer[] f = Arrays.stream(sc.nextLine().split(" ")).map(Integer::parseInt).toArray(Integer[]::new);
Integer[] s = Arrays.stream(sc.nextLine().split(" ")).map(Integer::parseInt).toArray(Integer[]::new);
System.out.println(getResult(m, f, s));
}
public static int getResult(int m, Integer[] f, Integer[] s) {
Map<Integer, Integer> count = new HashMap<>();
Map<Integer, Integer> size = new HashMap<>();
for (int i = 0; i < f.length; i++) {
count.put(f[i], count.getOrDefault(f[i], 0) + 1);
size.putIfAbsent(f[i], s[i]);
}
int totalCost = 0;
for (Integer k : count.keySet()) {
int scanCost = count.get(k) * size.get(k);
int cacheCost = size.get(k) + m;
totalCost += Math.min(scanCost, cacheCost);
}
return totalCost;
}
}
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
C++解法
costCache:额外的费用(表示任务大小加上缓存的额外时间)。
identifiers:每个任务的标识符(频率数组),即每个任务的标识符,可能有重复,表示任务出现的次数。
sizes:每个任务的大小数组,表示每个任务所需的时间。
核心思路:
使用两个 map(哈希表):
occurrence:统计每个任务标识符(identifiers[i])出现的次数。
sizeMap:记录每个标识符对应的任务大小(sizes[i])。任务大小只记录第一次出现的值,后续相同标识符的任务不需要更新任务大小。
计算最小金币数:
对于每个任务标识符 id,计算该任务的总时间。
如果任务频率为 count(id),每个任务的大小为 sizeMap[id],那么任务组的总时间是 count(id) * sizeMap[id]。
然而,任务的实际时间应当是 min(count(id) * sizeMap[id], sizeMap[id] + costCache),即计算任务的总时间和缓存时间的最小值。
最终,将所有任务的最小时间加起来,得到最小金币数。
返回结果:
输出计算的总金币数。
#include
#include
#include
#include
using namespace std;
vector<int> splitToInt(const string& input, char delim) {
vector<int> output;
string token;
istringstream stream(input);
while (getline(stream, token, delim)) {
output.push_back(stoi(token));
}
return output;
}
int minCoins(int costCache, const vector<int>& identifiers, const vector<int>& sizes) {
map<int, int> occurrence;
map<int, int> sizeMap;
for (int i = 0; i < identifiers.size(); i++) {
int id = identifiers[i];
occurrence[id]++;
if (sizeMap.find(id) == sizeMap.end()) {
sizeMap[id] = sizes[i];
}
}
int totalCoins = 0;
for (const auto& item : occurrence) {
int id = item.first;
totalCoins += min(item.second * sizeMap[id], sizeMap[id] + costCache);
}
return totalCoins;
}
int main() {
int costCache;
cin >> costCache;
string idStr, sizeStr;
cin.ignore();
getline(cin, idStr);
vector<int> identifiers = splitToInt(idStr, ' ');
getline(cin, sizeStr);
vector<int> sizes = splitToInt(sizeStr, ' ');
cout << minCoins(costCache, identifiers, sizes) << 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
- 56
- 57
- 58
- 59
- 60
- 61
- 62
- 63
- 64
- 65
- 66
C解法
更新中
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
JS解法
cacheSize:额外的缓存费用(可以理解为给任务额外分配的时间或空间)。
files:每个任务的标识符数组,表示任务的不同标识符(可能重复,表示任务的频率)。
scanCosts:每个任务的扫描成本数组,表示任务完成时所需的时间。
核心思路:
对于每个任务标识符,计算其总的扫描成本和缓存成本:
扫描成本是任务出现的次数 count(file) 与该任务的扫描时间 cost(file) 的乘积,即 count(file) * cost(file)。
缓存成本是任务大小 cost(file) 加上额外的时间 cacheSize,即 cost(file) + cacheSize。
对于每个任务标识符,选择这两者中的最小值作为该任务的实际成本。
最终计算所有任务的总成本。
详细步骤:
首先遍历任务标识符数组 files,记录每个标识符出现的次数(fileCount)以及该标识符对应的扫描成本(fileCost)。
然后,对于每个不同的任务标识符,计算该标识符的最小成本,最终累加得到总的最小成本。
返回结果:
输出所有任务的最小总成本
const readline = require("readline");
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout,
});
const inputs = [];
rl.on("line", (line) => {
inputs.push(line);
if (inputs.length === 3) {
const cacheSize = parseInt(inputs[0]);
const files = inputs[1].split(" ").map(Number);
const scanCosts = inputs[2].split(" ").map(Number);
console.log(calculateMinCost(cacheSize, files, scanCosts));
inputs.length = 0;
}
});
function calculateMinCost(cacheSize, files, scanCosts) {
const fileCount = {};
const fileCost = {};
files.forEach((file, index) => {
if (!fileCount[file]) fileCount[file] = 0;
fileCount[file]++;
if (!fileCost[file]) {
fileCost[file] = scanCosts[index];
}
});
return Object.keys(fileCount).reduce((total, file) => {
const count = fileCount[file];
const cost = fileCost[file];
return total + Math.min(count * cost, cost + cacheSize);
}, 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
- 56
- 57
- 58
- 59
- 60
- 61
- 62
注意:
如果发现代码有用例覆盖不到的情况,欢迎反馈!会在第一时间修正,更新。
解题不易,如对您有帮助,欢迎点赞/收藏
评论记录:
回复评论: