結果

問題 No.945 YKC饅頭
ユーザー chocoruskchocorusk
提出日時 2019-12-08 05:33:28
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 234 ms / 2,000 ms
コード長 984 bytes
コンパイル時間 1,289 ms
コンパイル使用メモリ 114,032 KB
実行使用メモリ 12,800 KB
最終ジャッジ日時 2024-12-27 17:01:47
合計ジャッジ時間 9,008 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 3 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 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 2 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 3 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 3 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 15 ms
5,248 KB
testcase_32 AC 40 ms
9,216 KB
testcase_33 AC 67 ms
9,984 KB
testcase_34 AC 100 ms
7,808 KB
testcase_35 AC 169 ms
11,904 KB
testcase_36 AC 103 ms
5,248 KB
testcase_37 AC 96 ms
5,248 KB
testcase_38 AC 93 ms
5,376 KB
testcase_39 AC 42 ms
7,680 KB
testcase_40 AC 58 ms
10,496 KB
testcase_41 AC 34 ms
8,192 KB
testcase_42 AC 134 ms
7,936 KB
testcase_43 AC 87 ms
5,248 KB
testcase_44 AC 138 ms
10,368 KB
testcase_45 AC 142 ms
6,656 KB
testcase_46 AC 22 ms
6,784 KB
testcase_47 AC 101 ms
8,448 KB
testcase_48 AC 21 ms
5,248 KB
testcase_49 AC 61 ms
8,320 KB
testcase_50 AC 147 ms
7,552 KB
testcase_51 AC 199 ms
12,800 KB
testcase_52 AC 205 ms
12,800 KB
testcase_53 AC 210 ms
12,800 KB
testcase_54 AC 207 ms
12,800 KB
testcase_55 AC 200 ms
12,800 KB
testcase_56 AC 67 ms
12,800 KB
testcase_57 AC 61 ms
12,800 KB
testcase_58 AC 208 ms
12,800 KB
testcase_59 AC 234 ms
12,672 KB
testcase_60 AC 135 ms
12,800 KB
testcase_61 AC 222 ms
12,800 KB
testcase_62 AC 216 ms
12,800 KB
testcase_63 AC 61 ms
12,672 KB
testcase_64 AC 140 ms
12,800 KB
testcase_65 AC 127 ms
12,800 KB
testcase_66 AC 121 ms
12,800 KB
testcase_67 AC 176 ms
12,800 KB
testcase_68 AC 137 ms
12,800 KB
testcase_69 AC 83 ms
12,800 KB
testcase_70 AC 90 ms
12,672 KB
testcase_71 AC 92 ms
12,800 KB
testcase_72 AC 156 ms
12,800 KB
testcase_73 AC 228 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