結果

問題 No.945 YKC饅頭
ユーザー hitonanodehitonanode
提出日時 2019-12-08 00:49:59
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 520 ms / 2,000 ms
コード長 724 bytes
コンパイル時間 781 ms
コンパイル使用メモリ 91,648 KB
実行使用メモリ 67,072 KB
最終ジャッジ日時 2024-06-08 09:02:13
合計ジャッジ時間 11,820 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 3 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 3 ms
5,376 KB
testcase_23 AC 3 ms
5,376 KB
testcase_24 AC 3 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 3 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 1 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 16 ms
9,344 KB
testcase_32 AC 14 ms
17,024 KB
testcase_33 AC 80 ms
28,672 KB
testcase_34 AC 226 ms
35,200 KB
testcase_35 AC 393 ms
58,496 KB
testcase_36 AC 279 ms
22,784 KB
testcase_37 AC 264 ms
22,272 KB
testcase_38 AC 220 ms
25,728 KB
testcase_39 AC 43 ms
19,328 KB
testcase_40 AC 40 ms
24,448 KB
testcase_41 AC 18 ms
15,744 KB
testcase_42 AC 359 ms
42,368 KB
testcase_43 AC 238 ms
20,096 KB
testcase_44 AC 286 ms
47,232 KB
testcase_45 AC 389 ms
38,784 KB
testcase_46 AC 8 ms
11,008 KB
testcase_47 AC 221 ms
36,736 KB
testcase_48 AC 36 ms
9,344 KB
testcase_49 AC 78 ms
25,088 KB
testcase_50 AC 429 ms
44,032 KB
testcase_51 AC 513 ms
67,072 KB
testcase_52 AC 520 ms
67,072 KB
testcase_53 AC 507 ms
67,072 KB
testcase_54 AC 508 ms
67,072 KB
testcase_55 AC 512 ms
67,072 KB
testcase_56 AC 20 ms
25,088 KB
testcase_57 AC 18 ms
25,216 KB
testcase_58 AC 251 ms
54,656 KB
testcase_59 AC 315 ms
59,904 KB
testcase_60 AC 114 ms
39,424 KB
testcase_61 AC 280 ms
56,320 KB
testcase_62 AC 260 ms
55,168 KB
testcase_63 AC 22 ms
25,600 KB
testcase_64 AC 115 ms
40,704 KB
testcase_65 AC 93 ms
37,504 KB
testcase_66 AC 87 ms
36,864 KB
testcase_67 AC 195 ms
48,256 KB
testcase_68 AC 109 ms
39,808 KB
testcase_69 AC 43 ms
29,824 KB
testcase_70 AC 52 ms
31,232 KB
testcase_71 AC 57 ms
31,360 KB
testcase_72 AC 146 ms
43,904 KB
testcase_73 AC 303 ms
58,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <set>
#include <unordered_set>
#include <vector>
using namespace std;

int main()
{
    int N, M;
    std::cin >> N >> M;
    vector<unordered_set<int>> madd(N + 1), mdel(N + 1);
    for (int t = 0; t < M; t++) {
        int L, R;
        char T;
        cin >> L >> R >> T;
        int a = 0;
        if (T == 'K') a = 1;
        if (T == 'C') a = 2;
        madd[L - 1].insert(a + t * 3);
        mdel[R].insert(a + t * 3);
    }
    vector<int> ret(3);
    set<int> s;
    for (int i = 0; i < N; i++) {
        s.insert(madd[i].begin(), madd[i].end());
        for (auto x : mdel[i]) s.erase(x);
        if (!s.empty()) ret[*s.begin() % 3]++;
    }
    for (auto x : ret) cout << x << " ";
}
0