結果

問題 No.945 YKC饅頭
ユーザー MayimgMayimg
提出日時 2020-07-24 22:46:25
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 395 ms / 2,000 ms
コード長 754 bytes
コンパイル時間 2,531 ms
コンパイル使用メモリ 220,024 KB
実行使用メモリ 25,216 KB
最終ジャッジ日時 2024-06-25 22:25:19
合計ジャッジ時間 11,836 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 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 3 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 3 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 3 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 3 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 10 ms
5,376 KB
testcase_32 AC 8 ms
9,088 KB
testcase_33 AC 51 ms
12,672 KB
testcase_34 AC 141 ms
14,208 KB
testcase_35 AC 267 ms
22,272 KB
testcase_36 AC 182 ms
11,520 KB
testcase_37 AC 163 ms
11,264 KB
testcase_38 AC 148 ms
11,776 KB
testcase_39 AC 31 ms
9,216 KB
testcase_40 AC 26 ms
11,628 KB
testcase_41 AC 11 ms
8,448 KB
testcase_42 AC 253 ms
17,152 KB
testcase_43 AC 159 ms
10,368 KB
testcase_44 AC 211 ms
18,384 KB
testcase_45 AC 313 ms
16,768 KB
testcase_46 AC 6 ms
6,528 KB
testcase_47 AC 160 ms
14,720 KB
testcase_48 AC 25 ms
5,376 KB
testcase_49 AC 55 ms
11,008 KB
testcase_50 AC 317 ms
18,176 KB
testcase_51 AC 347 ms
25,216 KB
testcase_52 AC 347 ms
25,088 KB
testcase_53 AC 357 ms
25,216 KB
testcase_54 AC 359 ms
25,204 KB
testcase_55 AC 395 ms
25,044 KB
testcase_56 AC 10 ms
12,600 KB
testcase_57 AC 10 ms
12,672 KB
testcase_58 AC 130 ms
18,800 KB
testcase_59 AC 161 ms
19,860 KB
testcase_60 AC 59 ms
15,668 KB
testcase_61 AC 137 ms
19,200 KB
testcase_62 AC 132 ms
18,932 KB
testcase_63 AC 11 ms
12,800 KB
testcase_64 AC 60 ms
16,000 KB
testcase_65 AC 49 ms
15,360 KB
testcase_66 AC 49 ms
15,128 KB
testcase_67 AC 94 ms
17,368 KB
testcase_68 AC 58 ms
15,744 KB
testcase_69 AC 24 ms
13,588 KB
testcase_70 AC 30 ms
13,952 KB
testcase_71 AC 31 ms
13,952 KB
testcase_72 AC 80 ms
16,632 KB
testcase_73 AC 151 ms
19,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES
#include <bits/stdc++.h>
using namespace std;
map<char, int> conv = {{'Y', 0}, {'K', 1}, {'C', 2}};
signed main() { 
  ios::sync_with_stdio(false); cin.tie(0);
  int n, m;
  cin >> n >> m;
  vector<vector<pair<int, int>>> a(n + 1), b(n + 1);
  for (int i = 0; i < m; i++) {
    int l, r;
    cin >> l >> r;
    l--;
    r--;
    char ch;
    cin >> ch;
    a[l].emplace_back(i, conv[ch]);
    b[r + 1].emplace_back(i, conv[ch]);
  }
  set<pair<int, int>> st;
  vector<int> ans(3);
  for (int i = 0; i < n; i++) {
    for (auto& p : b[i]) st.erase(p);
    for (auto& p : a[i]) st.insert(p);
    if (st.empty()) continue;
    ans[st.begin()->second]++;
  }
  cout << ans[0] << " " << ans[1] << " " << ans[2] << endl;
  return 0;
}
0