結果

問題 No.945 YKC饅頭
ユーザー aajisakaaajisaka
提出日時 2019-12-08 02:45:16
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 143 ms / 2,000 ms
コード長 1,825 bytes
コンパイル時間 2,583 ms
コンパイル使用メモリ 175,160 KB
実行使用メモリ 14,336 KB
最終ジャッジ日時 2024-12-27 15:10:02
合計ジャッジ時間 7,220 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 3 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 3 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 3 ms
5,248 KB
testcase_09 AC 3 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 3 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 AC 3 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 3 ms
5,248 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 2 ms
5,248 KB
testcase_28 AC 2 ms
5,248 KB
testcase_29 AC 2 ms
5,248 KB
testcase_30 AC 2 ms
5,248 KB
testcase_31 AC 12 ms
5,248 KB
testcase_32 AC 38 ms
9,216 KB
testcase_33 AC 51 ms
10,240 KB
testcase_34 AC 51 ms
8,448 KB
testcase_35 AC 91 ms
13,184 KB
testcase_36 AC 35 ms
5,248 KB
testcase_37 AC 34 ms
5,376 KB
testcase_38 AC 39 ms
6,272 KB
testcase_39 AC 31 ms
7,808 KB
testcase_40 AC 54 ms
10,624 KB
testcase_41 AC 32 ms
8,320 KB
testcase_42 AC 61 ms
9,088 KB
testcase_43 AC 30 ms
5,248 KB
testcase_44 AC 78 ms
11,264 KB
testcase_45 AC 56 ms
8,064 KB
testcase_46 AC 21 ms
6,528 KB
testcase_47 AC 53 ms
9,088 KB
testcase_48 AC 10 ms
5,248 KB
testcase_49 AC 39 ms
8,320 KB
testcase_50 AC 64 ms
8,832 KB
testcase_51 AC 104 ms
14,336 KB
testcase_52 AC 107 ms
14,336 KB
testcase_53 AC 104 ms
14,336 KB
testcase_54 AC 108 ms
14,336 KB
testcase_55 AC 109 ms
14,336 KB
testcase_56 AC 64 ms
12,672 KB
testcase_57 AC 59 ms
12,672 KB
testcase_58 AC 131 ms
13,824 KB
testcase_59 AC 143 ms
14,080 KB
testcase_60 AC 100 ms
13,056 KB
testcase_61 AC 136 ms
13,824 KB
testcase_62 AC 134 ms
13,824 KB
testcase_63 AC 62 ms
12,800 KB
testcase_64 AC 102 ms
13,184 KB
testcase_65 AC 93 ms
13,056 KB
testcase_66 AC 90 ms
13,056 KB
testcase_67 AC 126 ms
13,440 KB
testcase_68 AC 100 ms
13,184 KB
testcase_69 AC 81 ms
12,928 KB
testcase_70 AC 80 ms
12,928 KB
testcase_71 AC 82 ms
12,928 KB
testcase_72 AC 121 ms
13,312 KB
testcase_73 AC 137 ms
13,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/**
 * code generated by JHelper
 * More info: https://github.com/AlexeyDmitriev/JHelper
 * @author aajisaka
 */

#include<bits/stdc++.h>

using namespace std;

void debug_out() { cerr << endl; }
template <typename Head, typename... Tail>
void debug_out(Head H, Tail... T) {
  cerr << " " << to_string(H);
  debug_out(T...);
}
#ifdef LOCAL
#define debug(...) cerr << "[" << #__VA_ARGS__ << "]:", debug_out(__VA_ARGS__)
#else
#define debug(...) 42
#endif

#define SPEED ios_base::sync_with_stdio(false);cin.tie(nullptr)
#define rep(i,n) for(int i=0; i<(int)(n); i++)
#define all(v) v.begin(), v.end()
template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; }

using ll = long long;
using P = pair<ll, ll>;

constexpr double PI = 3.14159265358979323846;
mt19937_64 engine(chrono::steady_clock::now().time_since_epoch().count());

class YKC {
public:
    void solve(istream& cin, ostream& cout) {
      SPEED;
      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;
      for(int i=1; i<=n; i++) {
        st.insert(i);
      }
      vector<int> cnt(3);
      rep(i, m) {
        auto it = st.lower_bound(l[i]);
        while(it != st.end() && (*it) <= r[i]) {
          it = st.erase(it);
          if (t[i] == 'Y') {
            cnt[0]++;
          } else if (t[i] == 'K') {
            cnt[1]++;
          } else {
            cnt[2]++;
          }
        }
      }
      cout << cnt[0] << ' ' << cnt[1] << ' ' << cnt[2] << endl;
    }
};

signed main() {
  YKC solver;
  std::istream& in(std::cin);
  std::ostream& out(std::cout);
  solver.solve(in, out);
  return 0;
}
0