1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

paizaラーニング レベルアップ問題集 ソートメニュー応用編 JavaScript スケジューリング

Last updated at Posted at 2022-09-13

スケジューリング (paizaランク B 相当)

解いてみました。

キャンペーンの参加数を最大化するには、
終了日が早い順にソートをすれば良いです。

あるキャンペーンが終わって、次のキャンペーンに参加する条件は、
あるのキャンペーンの終了日と次のキャンペーンの開始日を比較すれば良いです。

C++ の場合の模範解答を参考にJavaScriptでコードを書いてみました。

JavaScript
const fs = require("fs");
const input = fs.readFileSync("/dev/stdin", "utf-8").trim();
const lines = input.split("\n");
//キャンペーンは n 回開催
const n = Number(lines[0]);

//キャンペーン開始日・終了日の配列
let campaign = [];
for (let i = 1; i <= n; i++) {
    campaign.push(lines[i].split(" ").map(Number));
}
//キャンペーン終了日の早い順にソート
campaign.sort((a, b) => a[1] - b[1]);

let participated_campaigns = 0;//参加できるキャンペーン日数
let campaign_lastday = 0;//あるキャンペーンの終了日
for (let i = 0; i < n; i++) {
    //あるキャンペーンの終了日より、開始日が早ければ
    if (campaign_lastday < campaign[i][0]) {
      participated_campaigns++;//参加できる
      campaign_lastday = campaign[i][1];//終了日を更新
    }
}
console.log(participated_campaigns);

また、メソッドを使って、キャンペーン開始日・終了日の配列をソートするところを、まとめて以下のようにも書けます。

JavaScript
//キャンペーン開始日・終了日の配列
const campaign = lines.slice(1)
    .map(line => line.split(" ").map(Number))
    //キャンペーン終了日の早い順にソート
    .sort((a, b) => a[1] - b[1]);
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?