結果

問題 No.945 YKC饅頭
ユーザー eSeFeSeF
提出日時 2020-07-14 22:32:00
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 619 bytes
コンパイル時間 2,174 ms
コンパイル使用メモリ 208,412 KB
実行使用メモリ 19,492 KB
最終ジャッジ日時 2024-11-19 00:26:14
合計ジャッジ時間 55,123 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,636 KB
testcase_01 AC 2 ms
19,360 KB
testcase_02 AC 2 ms
13,636 KB
testcase_03 AC 3 ms
19,360 KB
testcase_04 AC 2 ms
13,636 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
13,636 KB
testcase_07 AC 2 ms
19,360 KB
testcase_08 AC 2 ms
13,640 KB
testcase_09 AC 1 ms
13,640 KB
testcase_10 AC 2 ms
13,636 KB
testcase_11 AC 2 ms
19,364 KB
testcase_12 AC 2 ms
13,640 KB
testcase_13 AC 2 ms
19,364 KB
testcase_14 AC 2 ms
13,640 KB
testcase_15 AC 2 ms
13,640 KB
testcase_16 AC 2 ms
13,636 KB
testcase_17 AC 2 ms
19,360 KB
testcase_18 AC 2 ms
13,636 KB
testcase_19 AC 2 ms
19,364 KB
testcase_20 AC 2 ms
13,636 KB
testcase_21 AC 1 ms
19,360 KB
testcase_22 AC 2 ms
13,640 KB
testcase_23 AC 2 ms
19,360 KB
testcase_24 AC 2 ms
13,632 KB
testcase_25 AC 2 ms
19,364 KB
testcase_26 AC 2 ms
13,632 KB
testcase_27 AC 2 ms
19,492 KB
testcase_28 AC 2 ms
13,636 KB
testcase_29 AC 2 ms
19,488 KB
testcase_30 AC 2 ms
13,632 KB
testcase_31 AC 17 ms
6,816 KB
testcase_32 AC 45 ms
9,344 KB
testcase_33 AC 92 ms
10,112 KB
testcase_34 AC 98 ms
7,936 KB
testcase_35 AC 178 ms
12,032 KB
testcase_36 AC 90 ms
6,820 KB
testcase_37 AC 85 ms
6,816 KB
testcase_38 AC 85 ms
6,820 KB
testcase_39 AC 51 ms
7,808 KB
testcase_40 AC 71 ms
10,624 KB
testcase_41 AC 40 ms
8,320 KB
testcase_42 AC 130 ms
8,192 KB
testcase_43 AC 76 ms
6,816 KB
testcase_44 AC 137 ms
10,496 KB
testcase_45 AC 133 ms
6,816 KB
testcase_46 AC 25 ms
6,912 KB
testcase_47 AC 106 ms
8,576 KB
testcase_48 AC 20 ms
6,820 KB
testcase_49 AC 67 ms
8,448 KB
testcase_50 AC 144 ms
7,680 KB
testcase_51 AC 214 ms
12,928 KB
testcase_52 AC 224 ms
12,800 KB
testcase_53 AC 204 ms
12,928 KB
testcase_54 AC 215 ms
12,928 KB
testcase_55 AC 211 ms
12,928 KB
testcase_56 AC 65 ms
12,928 KB
testcase_57 AC 60 ms
12,928 KB
testcase_58 TLE -
testcase_59 TLE -
testcase_60 TLE -
testcase_61 TLE -
testcase_62 TLE -
testcase_63 TLE -
testcase_64 TLE -
testcase_65 TLE -
testcase_66 TLE -
testcase_67 TLE -
testcase_68 TLE -
testcase_69 TLE -
testcase_70 TLE -
testcase_71 TLE -
testcase_72 TLE -
testcase_73 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i=0;i<n;i++)
using namespace std;
typedef long long ll;
const int MOD = 1000000007;
const ll INF = (ll) 1e18;
int main()
{
  int N,M;
  cin >> N >> M;
  set<int>res;
  rep(i,N)res.insert(i);
  vector<int>ans(3,0);
  rep(i,M){
    int L,R;char T;
    cin >> L >> R >> T;
    L--;R--;
    auto itr = lower_bound(res.begin(),res.end(),L);
    while (itr!=res.end()&&L<=(*itr)&&(*itr)<=R)
    {
      itr=res.erase(itr);
      if(T=='Y')ans[0]++;
      if(T=='K')ans[1]++;
      if(T=='C')ans[2]++;
    }
  }
  printf("%lld %lld %lld\n",ans[0],ans[1],ans[2]);
  return 0;
}
0