結果

問題 No.945 YKC饅頭
ユーザー coco18000coco18000
提出日時 2019-12-08 01:03:22
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 552 ms / 2,000 ms
コード長 1,407 bytes
コンパイル時間 1,692 ms
コンパイル使用メモリ 182,876 KB
実行使用メモリ 48,404 KB
最終ジャッジ日時 2024-06-08 10:06:52
合計ジャッジ時間 14,440 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 3 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 3 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 2 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 3 ms
5,376 KB
testcase_23 AC 3 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 3 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 1 ms
5,376 KB
testcase_31 AC 28 ms
9,856 KB
testcase_32 AC 62 ms
22,912 KB
testcase_33 AC 126 ms
28,180 KB
testcase_34 AC 216 ms
25,192 KB
testcase_35 AC 455 ms
42,920 KB
testcase_36 AC 186 ms
18,236 KB
testcase_37 AC 176 ms
18,064 KB
testcase_38 AC 195 ms
18,064 KB
testcase_39 AC 77 ms
19,216 KB
testcase_40 AC 101 ms
28,232 KB
testcase_41 AC 55 ms
19,840 KB
testcase_42 AC 307 ms
29,200 KB
testcase_43 AC 141 ms
16,636 KB
testcase_44 AC 299 ms
35,132 KB
testcase_45 AC 316 ms
26,932 KB
testcase_46 AC 33 ms
14,336 KB
testcase_47 AC 209 ms
27,036 KB
testcase_48 AC 36 ms
7,372 KB
testcase_49 AC 113 ms
22,416 KB
testcase_50 AC 335 ms
29,868 KB
testcase_51 AC 541 ms
48,256 KB
testcase_52 AC 552 ms
48,280 KB
testcase_53 AC 513 ms
48,404 KB
testcase_54 AC 511 ms
48,244 KB
testcase_55 AC 535 ms
48,288 KB
testcase_56 AC 116 ms
34,944 KB
testcase_57 AC 117 ms
34,944 KB
testcase_58 AC 348 ms
42,112 KB
testcase_59 AC 410 ms
43,648 KB
testcase_60 AC 202 ms
38,144 KB
testcase_61 AC 380 ms
42,752 KB
testcase_62 AC 351 ms
42,368 KB
testcase_63 AC 99 ms
35,072 KB
testcase_64 AC 205 ms
38,400 KB
testcase_65 AC 185 ms
37,760 KB
testcase_66 AC 180 ms
37,504 KB
testcase_67 AC 270 ms
40,448 KB
testcase_68 AC 201 ms
38,400 KB
testcase_69 AC 127 ms
36,096 KB
testcase_70 AC 158 ms
36,224 KB
testcase_71 AC 140 ms
36,224 KB
testcase_72 AC 228 ms
39,424 KB
testcase_73 AC 387 ms
43,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

typedef long long int ll;
typedef pair<ll, ll> pll;

#define FOR(i, n, m) for(ll (i)=(m);(i)<(n);++(i))
#define REP(i, n) FOR(i,n,0)
#define OF64 std::setprecision(10)

const ll MOD = 1000000007;
const ll INF = (ll) 1e15;

map<ll, vector<pll>> L;
map<ll, vector<pll>> R;
ll A[3];
bool U[200005];

int main() {
    ll N, M;
    cin >> N >> M;

    REP(i, M) {
        ll l, r;
        char c;
        cin >> l >> r >> c;
        l--;
        ll t = 0;
        if (c == 'Y')
            t = 0;
        else if (c == 'K')
            t = 1;
        else
            t = 2;
        L[l].push_back(pll(i, t));
        R[r].push_back(pll(i, t));
    }

    memset(A, 0, sizeof(A));
    memset(U, 0, sizeof(U));
    priority_queue<pll, vector<pll>, function<bool(pll, pll)>> q([](pll a, pll b) { return a.first > b.first; });
    REP(i, N) {
        auto rv = R[i];
        REP(j, rv.size()) {
            U[rv[j].first] = false;
        }
        auto lv = L[i];
        REP(j, lv.size()) {
            U[lv[j].first] = true;
            q.push(lv[j]);
        }

        while (!q.empty()) {
            pll t = q.top();
            if (!U[t.first]) {
                q.pop();
                continue;
            }
            A[t.second]++;
            break;
        }
    }

    REP(i, 3) {
        cout << A[i] << " ";
    }
    cout << endl;
    return 0;
}
0