結果

問題 No.2154 あさかつの参加人数
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-05-05 14:31:42
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 901 ms / 2,000 ms
コード長 563 bytes
コンパイル時間 1,033 ms
コンパイル使用メモリ 107,944 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-02 10:32:17
合計ジャッジ時間 22,489 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 897 ms
5,248 KB
testcase_01 AC 878 ms
5,376 KB
testcase_02 AC 891 ms
5,376 KB
testcase_03 AC 901 ms
5,376 KB
testcase_04 AC 894 ms
5,376 KB
testcase_05 AC 157 ms
5,376 KB
testcase_06 AC 498 ms
5,376 KB
testcase_07 AC 496 ms
5,376 KB
testcase_08 AC 561 ms
5,376 KB
testcase_09 AC 332 ms
5,376 KB
testcase_10 AC 446 ms
5,376 KB
testcase_11 AC 757 ms
5,376 KB
testcase_12 AC 537 ms
5,376 KB
testcase_13 AC 248 ms
5,376 KB
testcase_14 AC 546 ms
5,376 KB
testcase_15 AC 541 ms
5,376 KB
testcase_16 AC 599 ms
5,376 KB
testcase_17 AC 576 ms
5,376 KB
testcase_18 AC 684 ms
5,376 KB
testcase_19 AC 78 ms
5,376 KB
testcase_20 AC 634 ms
5,376 KB
testcase_21 AC 290 ms
5,376 KB
testcase_22 AC 588 ms
5,376 KB
testcase_23 AC 686 ms
5,376 KB
testcase_24 AC 777 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cmath>
#include <map>
#include <set>
#include <iomanip>
#include <queue>
#include <algorithm>
#include <numeric>
#include <deque>
#include <complex>
#include <cassert>

using namespace std;
using ll = long long;

int main(){

    int N, M, L, R;
    cin >> N >> M;
    vector<int> S(N+5);
    for (int i=0; i<M; i++){
        cin >> R >> L;
        S[R+1]++;
        S[L]--;
    }

    for (int i=N+3; i>=0; i--){
        S[i] += S[i+1];
    }

    for (int i=N+1; i>=2; i--) cout << S[i] << endl;

    return 0;
}
0