#3557. [GESP202512 五级 C++] 第 14 题

[GESP202512 五级 C++] 第 14 题

给定有 n 个任务,每个任务有截止时间和利润,每个任务耗时 1 个时间单位、必须在截止时间前完成,且每个时间槽最多做 1 个任务。为了在规定时间内获得最大利润,可以采用贪心策略,即按利润从高到低排序,尽量安排,则横线处应填写( )。

struct Task {
    int deadline;   //截止时间
    int profit;     //利润
};

void sortByProfit(vector<Task>& tasks) {
    sort(tasks.begin(), tasks.end(),
        [](const Task& a, const Task& b) {
            return a.profit > b.profit;
        });
}

int maxProfit(vector<Task>& tasks) {
    sortByProfit(tasks);

    int maxTime = 0;
    for (auto& t : tasks) {
        maxTime = max(maxTime, t.deadline);
    }

    vector<bool> slot(maxTime + 1, false);
    int totalProfit = 0;

    for (auto& task : tasks) {
        for (int t = task.deadline; t >= 1; t--) {
            if (!slot[t]) {

                ________________________ //在此处填入代码
                break;
            }
        }
    }

    return totalProfit;
}

{{ select(1) }}

  • A:slot[t] = true; totalProfit += task.profit;
  • B:slot[t] = false; totalProfit += task.profit;
  • C:slot[t] = true; totalProfit = task.profit;
  • D:slot[t] = false; totalProfit = task.profit;