結果

問題 No.945 YKC饅頭
ユーザー okkuukenkenokkuukenken
提出日時 2022-07-17 19:02:47
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 376 ms / 2,000 ms
コード長 698 bytes
コンパイル時間 1,441 ms
コンパイル使用メモリ 140,468 KB
実行使用メモリ 24,832 KB
最終ジャッジ日時 2024-06-29 20:09:33
合計ジャッジ時間 11,554 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 4 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 4 ms
5,376 KB
testcase_14 AC 4 ms
5,376 KB
testcase_15 AC 3 ms
5,376 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 AC 4 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 3 ms
5,376 KB
testcase_22 AC 4 ms
5,376 KB
testcase_23 AC 4 ms
5,376 KB
testcase_24 AC 4 ms
5,376 KB
testcase_25 AC 4 ms
5,376 KB
testcase_26 AC 4 ms
5,376 KB
testcase_27 AC 3 ms
5,376 KB
testcase_28 AC 4 ms
5,376 KB
testcase_29 AC 3 ms
5,376 KB
testcase_30 AC 3 ms
5,376 KB
testcase_31 AC 14 ms
5,760 KB
testcase_32 AC 10 ms
7,808 KB
testcase_33 AC 65 ms
12,800 KB
testcase_34 AC 171 ms
14,080 KB
testcase_35 AC 284 ms
22,016 KB
testcase_36 AC 209 ms
9,984 KB
testcase_37 AC 198 ms
9,856 KB
testcase_38 AC 176 ms
11,136 KB
testcase_39 AC 36 ms
9,472 KB
testcase_40 AC 32 ms
11,648 KB
testcase_41 AC 14 ms
8,448 KB
testcase_42 AC 257 ms
16,384 KB
testcase_43 AC 180 ms
8,960 KB
testcase_44 AC 221 ms
18,176 KB
testcase_45 AC 283 ms
15,488 KB
testcase_46 AC 7 ms
6,144 KB
testcase_47 AC 164 ms
14,720 KB
testcase_48 AC 32 ms
5,504 KB
testcase_49 AC 65 ms
11,264 KB
testcase_50 AC 314 ms
16,896 KB
testcase_51 AC 367 ms
24,832 KB
testcase_52 AC 376 ms
24,832 KB
testcase_53 AC 371 ms
24,832 KB
testcase_54 AC 368 ms
24,832 KB
testcase_55 AC 357 ms
24,704 KB
testcase_56 AC 4 ms
5,376 KB
testcase_57 AC 3 ms
5,376 KB
testcase_58 AC 180 ms
19,072 KB
testcase_59 AC 227 ms
19,968 KB
testcase_60 AC 81 ms
16,000 KB
testcase_61 AC 193 ms
19,328 KB
testcase_62 AC 186 ms
19,072 KB
testcase_63 AC 13 ms
10,880 KB
testcase_64 AC 84 ms
16,256 KB
testcase_65 AC 68 ms
15,616 KB
testcase_66 AC 66 ms
15,488 KB
testcase_67 AC 131 ms
17,792 KB
testcase_68 AC 78 ms
16,128 KB
testcase_69 AC 33 ms
13,952 KB
testcase_70 AC 40 ms
14,208 KB
testcase_71 AC 38 ms
14,336 KB
testcase_72 AC 100 ms
16,896 KB
testcase_73 AC 207 ms
19,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>
#include<cmath>
#include<string>
#include<iomanip>
#include<numeric>
#include<queue>
#include<deque>
#include<stack>
#include<set>
#include<map>
#include<random>
using namespace std;
typedef long long ll;
const int mod=998244353;
vector<int>in[200001],out[200001];
int cnt[128];
int main(){
	int n,m,l,r;
	static char t[200000];
	cin>>n>>m;
	for(int i=0;i<m;i++){
		cin>>l>>r>>t[i];
		in[l-1].push_back(i);
		out[r].push_back(i);
	}
	set<int>st;
	for(int i=0;i<n;i++){
		for(auto x:in[i])
			st.insert(x);
		for(auto x:out[i])
			st.erase(x);
		if(st.size())
			cnt[t[*st.begin()]]++;
	}
	cout<<cnt['Y']<<' '<<cnt['K']<<' '<<cnt['C']<<endl;
}
0