結果

問題 No.945 YKC饅頭
ユーザー chocopuuchocopuu
提出日時 2019-12-08 00:17:25
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 619 ms / 2,000 ms
コード長 1,168 bytes
コンパイル時間 2,824 ms
コンパイル使用メモリ 186,132 KB
実行使用メモリ 26,240 KB
最終ジャッジ日時 2024-12-26 19:04:35
合計ジャッジ時間 15,766 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 3 ms
5,248 KB
testcase_03 AC 4 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 3 ms
5,248 KB
testcase_07 AC 3 ms
5,248 KB
testcase_08 AC 3 ms
5,248 KB
testcase_09 AC 3 ms
5,248 KB
testcase_10 AC 4 ms
5,248 KB
testcase_11 AC 3 ms
5,248 KB
testcase_12 AC 3 ms
5,248 KB
testcase_13 AC 3 ms
5,248 KB
testcase_14 AC 3 ms
5,248 KB
testcase_15 AC 3 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 4 ms
5,248 KB
testcase_18 AC 3 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 3 ms
5,248 KB
testcase_21 AC 3 ms
5,248 KB
testcase_22 AC 4 ms
5,248 KB
testcase_23 AC 4 ms
5,248 KB
testcase_24 AC 4 ms
5,248 KB
testcase_25 AC 4 ms
5,248 KB
testcase_26 AC 4 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 18 ms
5,248 KB
testcase_32 AC 9 ms
7,168 KB
testcase_33 AC 88 ms
10,880 KB
testcase_34 AC 267 ms
15,104 KB
testcase_35 AC 453 ms
22,656 KB
testcase_36 AC 343 ms
16,256 KB
testcase_37 AC 319 ms
15,232 KB
testcase_38 AC 279 ms
14,360 KB
testcase_39 AC 50 ms
8,192 KB
testcase_40 AC 39 ms
9,472 KB
testcase_41 AC 14 ms
6,784 KB
testcase_42 AC 429 ms
19,456 KB
testcase_43 AC 281 ms
14,080 KB
testcase_44 AC 342 ms
18,560 KB
testcase_45 AC 514 ms
20,352 KB
testcase_46 AC 6 ms
5,376 KB
testcase_47 AC 259 ms
15,232 KB
testcase_48 AC 46 ms
6,016 KB
testcase_49 AC 88 ms
9,984 KB
testcase_50 AC 536 ms
21,504 KB
testcase_51 AC 592 ms
26,112 KB
testcase_52 AC 592 ms
26,112 KB
testcase_53 AC 619 ms
26,112 KB
testcase_54 AC 598 ms
26,112 KB
testcase_55 AC 562 ms
26,240 KB
testcase_56 AC 9 ms
9,600 KB
testcase_57 AC 9 ms
9,472 KB
testcase_58 AC 212 ms
16,384 KB
testcase_59 AC 264 ms
18,048 KB
testcase_60 AC 93 ms
12,800 KB
testcase_61 AC 232 ms
16,896 KB
testcase_62 AC 216 ms
16,640 KB
testcase_63 AC 11 ms
9,600 KB
testcase_64 AC 100 ms
12,928 KB
testcase_65 AC 82 ms
12,160 KB
testcase_66 AC 74 ms
12,160 KB
testcase_67 AC 157 ms
14,848 KB
testcase_68 AC 98 ms
12,800 KB
testcase_69 AC 31 ms
10,496 KB
testcase_70 AC 41 ms
10,752 KB
testcase_71 AC 41 ms
10,880 KB
testcase_72 AC 123 ms
13,696 KB
testcase_73 AC 245 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