結果

問題 No.945 YKC饅頭
ユーザー chocoruskchocorusk
提出日時 2019-12-08 05:33:28
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 213 ms / 2,000 ms
コード長 984 bytes
コンパイル時間 1,041 ms
コンパイル使用メモリ 114,308 KB
実行使用メモリ 12,928 KB
最終ジャッジ日時 2024-06-08 11:32:51
合計ジャッジ時間 8,241 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 3 ms
5,376 KB
testcase_24 AC 3 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 3 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 14 ms
5,376 KB
testcase_32 AC 36 ms
9,216 KB
testcase_33 AC 66 ms
9,984 KB
testcase_34 AC 91 ms
7,808 KB
testcase_35 AC 155 ms
12,032 KB
testcase_36 AC 95 ms
5,376 KB
testcase_37 AC 85 ms
5,376 KB
testcase_38 AC 82 ms
5,376 KB
testcase_39 AC 40 ms
7,680 KB
testcase_40 AC 54 ms
10,624 KB
testcase_41 AC 32 ms
8,064 KB
testcase_42 AC 122 ms
7,808 KB
testcase_43 AC 80 ms
5,376 KB
testcase_44 AC 122 ms
10,240 KB
testcase_45 AC 132 ms
6,528 KB
testcase_46 AC 19 ms
6,656 KB
testcase_47 AC 91 ms
8,448 KB
testcase_48 AC 20 ms
5,376 KB
testcase_49 AC 54 ms
8,320 KB
testcase_50 AC 143 ms
7,552 KB
testcase_51 AC 187 ms
12,800 KB
testcase_52 AC 186 ms
12,672 KB
testcase_53 AC 186 ms
12,800 KB
testcase_54 AC 190 ms
12,800 KB
testcase_55 AC 186 ms
12,800 KB
testcase_56 AC 60 ms
12,928 KB
testcase_57 AC 55 ms
12,800 KB
testcase_58 AC 193 ms
12,800 KB
testcase_59 AC 213 ms
12,800 KB
testcase_60 AC 122 ms
12,800 KB
testcase_61 AC 195 ms
12,928 KB
testcase_62 AC 187 ms
12,800 KB
testcase_63 AC 57 ms
12,672 KB
testcase_64 AC 127 ms
12,800 KB
testcase_65 AC 116 ms
12,800 KB
testcase_66 AC 114 ms
12,800 KB
testcase_67 AC 158 ms
12,800 KB
testcase_68 AC 123 ms
12,800 KB
testcase_69 AC 86 ms
12,800 KB
testcase_70 AC 86 ms
12,800 KB
testcase_71 AC 87 ms
12,800 KB
testcase_72 AC 145 ms
12,800 KB
testcase_73 AC 208 ms
12,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#include <utility>
#include <functional>
#include <time.h>
#include <stack>
#include <array>
#define popcount __builtin_popcount
using namespace std;
typedef long long int ll;
typedef pair<ll, ll> P;

int main()
{
    int n, m;
    cin>>n>>m;
    int a[3]={};
  set<int> st;
  for(int i=0; i<=n; i++) st.insert(i);
  for(int i=0; i<m; i++){
    int l, r, p; char t;
    cin>>l>>r>>t;
    l--; r--;
    if(t=='Y') p=0;
    else if(t=='K') p=1;
    else p=2;
    int x=l;
    auto itr=st.lower_bound(x);
    while(1){
      if(*itr>r) break;
      a[p]++;
      itr=st.erase(itr);
    }
  }
  cout<<a[0]<<" "<<a[1]<<" "<<a[2]<<endl;
    return 0;
}
0