結果

問題 No.945 YKC饅頭
ユーザー 🍮かんプリン🍮かんプリン
提出日時 2020-06-18 20:02:46
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 409 ms / 2,000 ms
コード長 1,269 bytes
コンパイル時間 1,563 ms
コンパイル使用メモリ 186,244 KB
実行使用メモリ 17,992 KB
最終ジャッジ日時 2024-07-03 12:58:13
合計ジャッジ時間 11,973 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 3 ms
6,944 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 3 ms
6,940 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 3 ms
6,944 KB
testcase_25 AC 3 ms
6,944 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 2 ms
6,944 KB
testcase_28 AC 1 ms
6,940 KB
testcase_29 AC 1 ms
6,940 KB
testcase_30 AC 2 ms
6,944 KB
testcase_31 AC 13 ms
6,944 KB
testcase_32 AC 4 ms
6,944 KB
testcase_33 AC 59 ms
6,940 KB
testcase_34 AC 180 ms
11,136 KB
testcase_35 AC 317 ms
15,456 KB
testcase_36 AC 297 ms
15,360 KB
testcase_37 AC 253 ms
13,824 KB
testcase_38 AC 212 ms
12,288 KB
testcase_39 AC 33 ms
6,944 KB
testcase_40 AC 24 ms
6,940 KB
testcase_41 AC 8 ms
6,940 KB
testcase_42 AC 298 ms
15,232 KB
testcase_43 AC 250 ms
14,208 KB
testcase_44 AC 227 ms
12,672 KB
testcase_45 AC 371 ms
17,280 KB
testcase_46 AC 3 ms
6,940 KB
testcase_47 AC 175 ms
10,880 KB
testcase_48 AC 37 ms
6,940 KB
testcase_49 AC 62 ms
6,940 KB
testcase_50 AC 366 ms
17,616 KB
testcase_51 AC 400 ms
17,948 KB
testcase_52 AC 401 ms
17,992 KB
testcase_53 AC 409 ms
17,920 KB
testcase_54 AC 390 ms
17,920 KB
testcase_55 AC 392 ms
17,880 KB
testcase_56 AC 2 ms
6,944 KB
testcase_57 AC 2 ms
6,940 KB
testcase_58 AC 132 ms
6,944 KB
testcase_59 AC 168 ms
7,552 KB
testcase_60 AC 53 ms
6,940 KB
testcase_61 AC 142 ms
6,944 KB
testcase_62 AC 135 ms
6,940 KB
testcase_63 AC 4 ms
6,940 KB
testcase_64 AC 58 ms
6,944 KB
testcase_65 AC 45 ms
6,940 KB
testcase_66 AC 42 ms
6,940 KB
testcase_67 AC 95 ms
6,944 KB
testcase_68 AC 55 ms
6,940 KB
testcase_69 AC 17 ms
6,940 KB
testcase_70 AC 21 ms
6,940 KB
testcase_71 AC 22 ms
6,940 KB
testcase_72 AC 74 ms
6,940 KB
testcase_73 AC 153 ms
7,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/**
 *   @FileName	a.cpp
 *   @Author	kanpurin
 *   @Created	2020.06.18 20:02:41
**/

#include "bits/stdc++.h" 
using namespace std; 
typedef long long ll;

int main() {
    int n, m;
    cin >> n >> m;
    vector< tuple< int, int, char > > a(m);
    vector< tuple< int, int, char, int > > b(m);
    for (int i = 0; i < m; i++) {
        int l, r;
        char t;
        cin >> l >> r >> t;
        l--;
        r--;
        a[i] = make_tuple(l, r, t);
        b[i] = make_tuple(l, r, t, i);
    }
    sort(b.begin(), b.end());
    set< pair< int, int > > st1;  
    set< int > st2;               
    int now = 0;
    int cnt_Y = 0, cnt_K = 0, cnt_C = 0;
    for (int i = 0; i < n; i++) {
        while (now < m && get< 0 >(b[now]) <= i) {
            st1.insert({get< 1 >(b[now]), get< 3 >(b[now])});
            st2.insert(get<3>(b[now]));
            now++;
        }
        while(!st1.empty() && (*st1.begin()).first < i) {
            st2.erase((*st1.begin()).second);
            st1.erase(st1.begin());
        }
        if (st2.empty()) continue;
        char c = get<2>(a[*st2.begin()]);
        if (c == 'Y') cnt_Y++;
        else if (c == 'K') cnt_K++;
        else cnt_C++;
    }
    cout << cnt_Y << " " << cnt_K << " " << cnt_C << endl;
    return 0;
}
0