結果

問題 No.2154 あさかつの参加人数
ユーザー lddlinanlddlinan
提出日時 2023-03-17 16:12:33
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 300 ms / 2,000 ms
コード長 950 bytes
コンパイル時間 797 ms
コンパイル使用メモリ 87,656 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-09-18 10:02:23
合計ジャッジ時間 12,842 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 296 ms
10,880 KB
testcase_01 AC 300 ms
10,880 KB
testcase_02 AC 299 ms
10,880 KB
testcase_03 AC 299 ms
10,880 KB
testcase_04 AC 298 ms
10,880 KB
testcase_05 AC 155 ms
8,832 KB
testcase_06 AC 254 ms
10,368 KB
testcase_07 AC 141 ms
6,656 KB
testcase_08 AC 132 ms
6,144 KB
testcase_09 AC 34 ms
5,376 KB
testcase_10 AC 127 ms
6,400 KB
testcase_11 AC 251 ms
9,984 KB
testcase_12 AC 206 ms
8,704 KB
testcase_13 AC 128 ms
7,040 KB
testcase_14 AC 226 ms
9,344 KB
testcase_15 AC 122 ms
6,016 KB
testcase_16 AC 213 ms
8,832 KB
testcase_17 AC 254 ms
10,240 KB
testcase_18 AC 257 ms
10,112 KB
testcase_19 AC 16 ms
5,376 KB
testcase_20 AC 199 ms
8,192 KB
testcase_21 AC 27 ms
5,376 KB
testcase_22 AC 54 ms
5,376 KB
testcase_23 AC 239 ms
9,472 KB
testcase_24 AC 268 ms
10,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#include <map>
#include <vector>
#include <queue>
#include <deque>
#include <set>
#include <stack>
#include <algorithm>
#include <array>
#include <unordered_set>
#include <unordered_map>
#include <string>
using namespace std;

bool rcmp(int a, int b) { return a>b; }
typedef long long LL;



typedef struct { int i, x; } RNode;
RNode rs[1000004];
bool mycmp(const RNode& a, const RNode& b) {
    if (a.i!=b.i) return a.i<b.i;
    return a.x<b.x;
}
int main() {
    int n, i, m, k, l, r, j, c;
    scanf("%d %d", &n, &m);
    k=0;
    for (i=0; i<m; i++) {
        scanf("%d %d", &l, &r);
        l=n-l+1; r=n-r+1;
        rs[k].i=l; rs[k].x=1; k++;
        rs[k].i=r+1; rs[k].x=-1; k++;
    }
    sort(rs, rs+k, mycmp);
    c=0;
    for (i=0, j=1; j<=n; j++) {
        while(i<k&&rs[i].i==j) {
            c+=rs[i].x;
            i++;
        }
        printf("%d\n", c);
    }
    return 0;
}
0