結果

問題 No.945 YKC饅頭
ユーザー mkawa2mkawa2
提出日時 2019-12-16 10:19:16
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 345 ms / 2,000 ms
コード長 850 bytes
コンパイル時間 1,840 ms
コンパイル使用メモリ 183,636 KB
実行使用メモリ 24,828 KB
最終ジャッジ日時 2024-07-02 19:32:26
合計ジャッジ時間 11,490 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 3 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 1 ms
6,940 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 3 ms
6,944 KB
testcase_24 AC 2 ms
6,944 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 1 ms
6,944 KB
testcase_30 AC 1 ms
6,940 KB
testcase_31 AC 11 ms
6,940 KB
testcase_32 AC 3 ms
6,940 KB
testcase_33 AC 51 ms
7,636 KB
testcase_34 AC 154 ms
13,776 KB
testcase_35 AC 269 ms
22,388 KB
testcase_36 AC 242 ms
23,568 KB
testcase_37 AC 222 ms
22,276 KB
testcase_38 AC 184 ms
14,704 KB
testcase_39 AC 29 ms
6,940 KB
testcase_40 AC 23 ms
6,944 KB
testcase_41 AC 9 ms
6,944 KB
testcase_42 AC 273 ms
23,488 KB
testcase_43 AC 230 ms
21,740 KB
testcase_44 AC 199 ms
15,796 KB
testcase_45 AC 301 ms
24,068 KB
testcase_46 AC 3 ms
6,944 KB
testcase_47 AC 155 ms
13,804 KB
testcase_48 AC 34 ms
6,944 KB
testcase_49 AC 54 ms
7,760 KB
testcase_50 AC 314 ms
24,828 KB
testcase_51 AC 345 ms
23,888 KB
testcase_52 AC 337 ms
24,692 KB
testcase_53 AC 342 ms
24,712 KB
testcase_54 AC 336 ms
24,592 KB
testcase_55 AC 343 ms
24,408 KB
testcase_56 AC 2 ms
6,944 KB
testcase_57 AC 3 ms
6,944 KB
testcase_58 AC 167 ms
13,904 KB
testcase_59 AC 206 ms
14,324 KB
testcase_60 AC 63 ms
6,944 KB
testcase_61 AC 178 ms
13,652 KB
testcase_62 AC 170 ms
13,784 KB
testcase_63 AC 4 ms
6,944 KB
testcase_64 AC 70 ms
6,940 KB
testcase_65 AC 57 ms
6,940 KB
testcase_66 AC 56 ms
6,940 KB
testcase_67 AC 116 ms
8,656 KB
testcase_68 AC 66 ms
6,940 KB
testcase_69 AC 20 ms
6,944 KB
testcase_70 AC 26 ms
6,944 KB
testcase_71 AC 26 ms
6,940 KB
testcase_72 AC 94 ms
8,404 KB
testcase_73 AC 196 ms
14,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for (int i = 0; i < (n); i++)
typedef long long ll;
typedef pair<int, int> pii;
typedef vector<ll> vll;
typedef vector<int> vi;
typedef vector<vector<int>> vvi;
typedef vector<vector<ll>> vvll;
const ll inf = 1e16;
const ll md = 1000000007;

int main() {
  int n,m;
  cin>>n>>m;
  priority_queue<vi> q;
  priority_queue<vi> cmd;
  map<char,int> ttoi{{'Y',0},{'K',1},{'C',2}};
  vi ans(3,0);
  rep(i,m){
    int l,r;
    char t;
    cin>>l>>r>>t;
    l--;r--;
    cmd.push({-l,-i,r,ttoi[t]});
  }
  rep(di,n){
    while(cmd.size()>0 && -cmd.top()[0]<=di){
      q.push({cmd.top()[1],cmd.top()[2],cmd.top()[3]});
      cmd.pop();
    }
    if(q.size()>0) ans[q.top()[2]]++;
    while(q.size()>0 && q.top()[1]<=di) q.pop();
  }
  cout<<ans[0]<<" "<<ans[1]<<" "<<ans[2]<<endl;
  return 0;
}
0