結果

問題 No.945 YKC饅頭
ユーザー iqueue02iqueue02
提出日時 2019-12-11 16:07:11
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 219 ms / 2,000 ms
コード長 939 bytes
コンパイル時間 2,059 ms
コンパイル使用メモリ 184,468 KB
実行使用メモリ 16,932 KB
最終ジャッジ日時 2024-06-24 07:41:42
合計ジャッジ時間 8,580 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 3 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 3 ms
6,944 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 3 ms
6,944 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 3 ms
6,940 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 3 ms
6,940 KB
testcase_23 AC 3 ms
6,944 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 3 ms
6,944 KB
testcase_26 AC 3 ms
6,940 KB
testcase_27 AC 2 ms
6,944 KB
testcase_28 AC 2 ms
6,944 KB
testcase_29 AC 2 ms
6,944 KB
testcase_30 AC 2 ms
6,944 KB
testcase_31 AC 10 ms
6,940 KB
testcase_32 AC 5 ms
6,944 KB
testcase_33 AC 39 ms
8,900 KB
testcase_34 AC 93 ms
9,776 KB
testcase_35 AC 180 ms
15,144 KB
testcase_36 AC 117 ms
9,988 KB
testcase_37 AC 110 ms
10,036 KB
testcase_38 AC 101 ms
8,564 KB
testcase_39 AC 26 ms
6,944 KB
testcase_40 AC 21 ms
8,348 KB
testcase_41 AC 9 ms
6,940 KB
testcase_42 AC 143 ms
12,392 KB
testcase_43 AC 98 ms
10,160 KB
testcase_44 AC 120 ms
11,808 KB
testcase_45 AC 158 ms
12,136 KB
testcase_46 AC 4 ms
6,944 KB
testcase_47 AC 95 ms
10,096 KB
testcase_48 AC 23 ms
6,940 KB
testcase_49 AC 44 ms
8,064 KB
testcase_50 AC 168 ms
12,764 KB
testcase_51 AC 208 ms
16,408 KB
testcase_52 AC 219 ms
16,288 KB
testcase_53 AC 202 ms
16,284 KB
testcase_54 AC 196 ms
16,292 KB
testcase_55 AC 218 ms
16,932 KB
testcase_56 AC 6 ms
8,732 KB
testcase_57 AC 6 ms
8,644 KB
testcase_58 AC 131 ms
11,900 KB
testcase_59 AC 165 ms
12,516 KB
testcase_60 AC 58 ms
10,188 KB
testcase_61 AC 143 ms
12,152 KB
testcase_62 AC 137 ms
11,972 KB
testcase_63 AC 6 ms
8,708 KB
testcase_64 AC 62 ms
10,336 KB
testcase_65 AC 48 ms
10,040 KB
testcase_66 AC 48 ms
10,052 KB
testcase_67 AC 98 ms
11,280 KB
testcase_68 AC 62 ms
10,268 KB
testcase_69 AC 21 ms
9,300 KB
testcase_70 AC 26 ms
9,424 KB
testcase_71 AC 25 ms
9,416 KB
testcase_72 AC 78 ms
10,860 KB
testcase_73 AC 154 ms
12,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for(int i = 0; i < (n);i++)
#define sz(x) int(x.size())
typedef long long ll;
typedef pair<int,int> P;
constexpr int INF = 1e9;

int main(){
  int n, m;
  cin >> n >> m;
  
  priority_queue<pair<int,P>, vector<pair<int,P>>, greater<>> que;
  vector<vector<pair<int,P>>> ykc(n);
  map<char,int> mp;

  mp['Y'] = 0;
  mp['K'] = 1;
  mp['C'] = 2;

  rep(i,m) {
   int l, r;
   char c;
   cin >> l >> r >> c;
   int num = mp[c];
   l--; r--;
   ykc[l].emplace_back(make_pair(i,make_pair(r,num)));
  }

  vector<int> check(n,0), res(3,0);

  for (int i = 0; i < n; i++) {
    for (auto e : ykc[i]) que.push(e);

    while (!que.empty() && !check[i]) {
      auto p = que.top(); 
      if (p.second.first < i) que.pop();
      else {
        check[i] = 1;
        res[p.second.second]++;
      }  
    }  
  }
  for (auto ans : res) cout << ans << " ";
  cout << endl;
  return 0;
}
0