結果

問題 No.945 YKC饅頭
ユーザー chocopuuchocopuu
提出日時 2019-12-08 00:17:25
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 518 ms / 2,000 ms
コード長 1,168 bytes
コンパイル時間 2,029 ms
コンパイル使用メモリ 186,072 KB
実行使用メモリ 26,112 KB
最終ジャッジ日時 2024-06-08 03:00:12
合計ジャッジ時間 12,557 ms
ジャッジサーバーID
(参考情報)
judge4 / 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 3 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 3 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 3 ms
5,376 KB
testcase_18 AC 3 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 3 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 3 ms
5,376 KB
testcase_23 AC 3 ms
5,376 KB
testcase_24 AC 3 ms
5,376 KB
testcase_25 AC 3 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 7 ms
7,296 KB
testcase_33 AC 73 ms
10,880 KB
testcase_34 AC 220 ms
15,232 KB
testcase_35 AC 385 ms
22,656 KB
testcase_36 AC 273 ms
16,256 KB
testcase_37 AC 262 ms
15,360 KB
testcase_38 AC 223 ms
14,464 KB
testcase_39 AC 42 ms
8,192 KB
testcase_40 AC 35 ms
9,472 KB
testcase_41 AC 13 ms
6,912 KB
testcase_42 AC 352 ms
19,456 KB
testcase_43 AC 221 ms
14,080 KB
testcase_44 AC 281 ms
18,560 KB
testcase_45 AC 447 ms
20,480 KB
testcase_46 AC 5 ms
5,504 KB
testcase_47 AC 214 ms
15,232 KB
testcase_48 AC 37 ms
6,016 KB
testcase_49 AC 76 ms
9,984 KB
testcase_50 AC 465 ms
21,632 KB
testcase_51 AC 511 ms
26,112 KB
testcase_52 AC 518 ms
26,112 KB
testcase_53 AC 503 ms
26,112 KB
testcase_54 AC 506 ms
26,112 KB
testcase_55 AC 497 ms
26,112 KB
testcase_56 AC 8 ms
9,472 KB
testcase_57 AC 9 ms
9,472 KB
testcase_58 AC 180 ms
16,512 KB
testcase_59 AC 232 ms
18,176 KB
testcase_60 AC 79 ms
12,672 KB
testcase_61 AC 194 ms
16,896 KB
testcase_62 AC 194 ms
16,640 KB
testcase_63 AC 10 ms
9,600 KB
testcase_64 AC 85 ms
13,056 KB
testcase_65 AC 67 ms
12,160 KB
testcase_66 AC 65 ms
12,160 KB
testcase_67 AC 134 ms
14,720 KB
testcase_68 AC 83 ms
12,672 KB
testcase_69 AC 28 ms
10,496 KB
testcase_70 AC 34 ms
10,752 KB
testcase_71 AC 35 ms
10,880 KB
testcase_72 AC 105 ms
13,696 KB
testcase_73 AC 216 ms
17,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define int long long
#define REP(i,n) for(int i = 0;i < (int)(n);i++)
#define RREP(i,n) for(int i = (int)n-1;i >= 0;i--)
#define FOR(i,s,n) for(int i = s;i < (int)n;i++)
#define RFOR(i,s,n) for(int i = (int)n-1;i >= s;i--)
#define ALL(a) a.begin(),a.end()
#define IN(a, x, b) (a<=x && x<b)
template<class T>inline bool CHMAX(T&a,T b){if(a<b){a = b;return true;}return false;}
template<class T>inline bool CHMIN(T&a,T b){if(a>b){a = b;return true;}return false;}
constexpr long long INF = 1e18;



signed main(){
	int N,M;
	cin>>N>>M;
	vector<pair<int,int>>q[N+2];
	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;
		q[l-1].push_back({i+1,mp[c]});
		q[r].push_back({-i-1,mp[c]});
	}
	set<pair<int,int>>st;
	vector<int>ans(N,-1);
	REP(i,N){
		for(auto e:q[i]){
			int t = e.first;
			int c = e.second;
			if(t > 0){
				st.insert({t,c});
			}else{
				st.erase({-t,c});
			}
		}
		if(st.begin()==st.end())continue;
		ans[i]=st.begin()->second;
	}
	vector<int>cnt(3,0);
	REP(i,N)if(ans[i]!=-1)cnt[ans[i]]++;
	REP(i,cnt.size())cout << cnt[i] << " \n"[i+1 == cnt.size()];
} 
0