結果

問題 No.945 YKC饅頭
ユーザー pekempeypekempey
提出日時 2019-12-08 00:04:35
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 1,043 bytes
コンパイル時間 1,786 ms
コンパイル使用メモリ 175,440 KB
実行使用メモリ 14,592 KB
最終ジャッジ日時 2024-06-08 02:41:23
合計ジャッジ時間 6,819 ms
ジャッジサーバーID
(参考情報)
judge1 / 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 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 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 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 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 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 11 ms
5,376 KB
testcase_32 AC 35 ms
9,344 KB
testcase_33 AC 47 ms
10,240 KB
testcase_34 AC 45 ms
8,576 KB
testcase_35 AC 85 ms
13,312 KB
testcase_36 AC 32 ms
5,376 KB
testcase_37 AC 32 ms
5,376 KB
testcase_38 AC 34 ms
6,272 KB
testcase_39 AC 29 ms
7,808 KB
testcase_40 AC 47 ms
10,624 KB
testcase_41 AC 30 ms
8,320 KB
testcase_42 AC 56 ms
9,216 KB
testcase_43 AC 26 ms
5,376 KB
testcase_44 AC 66 ms
11,392 KB
testcase_45 AC 52 ms
8,064 KB
testcase_46 AC 19 ms
6,784 KB
testcase_47 AC 49 ms
9,088 KB
testcase_48 AC 10 ms
5,376 KB
testcase_49 AC 37 ms
8,504 KB
testcase_50 AC 59 ms
9,088 KB
testcase_51 AC 95 ms
14,592 KB
testcase_52 AC 96 ms
14,592 KB
testcase_53 AC 100 ms
14,592 KB
testcase_54 AC 96 ms
14,464 KB
testcase_55 AC 99 ms
14,592 KB
testcase_56 AC 59 ms
12,800 KB
testcase_57 AC 56 ms
12,928 KB
testcase_58 AC 121 ms
13,952 KB
testcase_59 AC 132 ms
14,080 KB
testcase_60 AC 90 ms
13,312 KB
testcase_61 AC 123 ms
14,080 KB
testcase_62 AC 117 ms
13,952 KB
testcase_63 AC 57 ms
12,928 KB
testcase_64 AC 94 ms
13,312 KB
testcase_65 AC 84 ms
13,184 KB
testcase_66 AC 82 ms
13,312 KB
testcase_67 AC 114 ms
13,568 KB
testcase_68 AC 88 ms
13,184 KB
testcase_69 AC 72 ms
12,928 KB
testcase_70 AC 72 ms
13,056 KB
testcase_71 AC 74 ms
13,056 KB
testcase_72 AC 106 ms
13,440 KB
testcase_73 AC 127 ms
14,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
using ll = long long;
 
#define rep(i, n)      for (int i = 0; i < (n); i++)
#define repr(i, n)     for (int i = (n) - 1; i >= 0; i--)
#define repe(i, l, r)  for (int i = (l); i < (r); i++)
#define reper(i, l, r) for (int i = (r) - 1; i >= (l); i--)
#define repi(i, l, r)  for (int i = (l); i <= (r); i++)
#define repir(i, l, r) for (int i = (r); i >= (l); i--)
#define range(a) a.begin(), a.end()
void initio() { cin.tie(nullptr); ios::sync_with_stdio(false); cout << fixed << setprecision(15); }

int main() { initio();
  int N, M; cin >> N >> M;
  vector<int> L(M), R(M); vector<char> T(M); rep(i, M) cin >> L[i] >> R[i] >> T[i];
  set<int> st;
  rep(i, N + 1) st.insert(i);
  vector<char> color(N, '*');
  rep(i, M) {
    L[i]--; R[i]--;
    auto it = st.lower_bound(L[i]);
    while (*it <= R[i]) {
      color[*it] = T[i];
      it = st.erase(it);
    }
  }
  cout << count(range(color), 'Y') << ' ';
  cout << count(range(color), 'K') << ' ';
  cout << count(range(color), 'C') << endl;
}
0