結果

問題 No.945 YKC饅頭
ユーザー hitonanodehitonanode
提出日時 2019-12-08 00:49:59
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 549 ms / 2,000 ms
コード長 724 bytes
コンパイル時間 1,029 ms
コンパイル使用メモリ 92,028 KB
実行使用メモリ 67,072 KB
最終ジャッジ日時 2024-12-27 10:06:16
合計ジャッジ時間 13,321 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 74
権限があれば一括ダウンロードができます

ソースコード

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