結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 947 ms
5,248 KB
testcase_01 AC 953 ms
5,248 KB
testcase_02 AC 962 ms
5,248 KB
testcase_03 AC 980 ms
5,248 KB
testcase_04 AC 974 ms
5,248 KB
testcase_05 AC 173 ms
5,248 KB
testcase_06 AC 540 ms
5,248 KB
testcase_07 AC 543 ms
5,248 KB
testcase_08 AC 603 ms
5,248 KB
testcase_09 AC 350 ms
5,248 KB
testcase_10 AC 494 ms
5,248 KB
testcase_11 AC 849 ms
5,248 KB
testcase_12 AC 578 ms
5,248 KB
testcase_13 AC 279 ms
5,248 KB
testcase_14 AC 596 ms
5,248 KB
testcase_15 AC 561 ms
5,248 KB
testcase_16 AC 656 ms
5,248 KB
testcase_17 AC 626 ms
5,248 KB
testcase_18 AC 752 ms
5,248 KB
testcase_19 AC 80 ms
5,248 KB
testcase_20 AC 701 ms
5,248 KB
testcase_21 AC 309 ms
5,248 KB
testcase_22 AC 606 ms
5,248 KB
testcase_23 AC 736 ms
5,248 KB
testcase_24 AC 859 ms
5,248 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