結果

問題 No.945 YKC饅頭
ユーザー 東前頭十一枚目東前頭十一枚目
提出日時 2019-12-12 11:40:34
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 386 ms / 2,000 ms
コード長 682 bytes
コンパイル時間 1,806 ms
コンパイル使用メモリ 176,164 KB
実行使用メモリ 20,892 KB
最終ジャッジ日時 2024-06-24 21:30:23
合計ジャッジ時間 10,360 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
8,164 KB
testcase_01 AC 4 ms
8,144 KB
testcase_02 AC 5 ms
8,352 KB
testcase_03 AC 5 ms
8,208 KB
testcase_04 AC 4 ms
8,240 KB
testcase_05 AC 4 ms
8,260 KB
testcase_06 AC 6 ms
8,368 KB
testcase_07 AC 5 ms
8,428 KB
testcase_08 AC 4 ms
8,252 KB
testcase_09 AC 4 ms
8,320 KB
testcase_10 AC 4 ms
8,284 KB
testcase_11 AC 4 ms
8,268 KB
testcase_12 AC 5 ms
8,440 KB
testcase_13 AC 5 ms
8,276 KB
testcase_14 AC 5 ms
8,328 KB
testcase_15 AC 5 ms
8,380 KB
testcase_16 AC 4 ms
8,352 KB
testcase_17 AC 5 ms
8,284 KB
testcase_18 AC 5 ms
8,268 KB
testcase_19 AC 5 ms
8,252 KB
testcase_20 AC 5 ms
8,332 KB
testcase_21 AC 4 ms
8,260 KB
testcase_22 AC 5 ms
8,332 KB
testcase_23 AC 5 ms
8,312 KB
testcase_24 AC 5 ms
8,300 KB
testcase_25 AC 6 ms
8,236 KB
testcase_26 AC 4 ms
8,320 KB
testcase_27 AC 5 ms
8,264 KB
testcase_28 AC 4 ms
8,332 KB
testcase_29 AC 5 ms
8,300 KB
testcase_30 AC 4 ms
8,252 KB
testcase_31 AC 14 ms
8,964 KB
testcase_32 AC 7 ms
8,364 KB
testcase_33 AC 61 ms
11,396 KB
testcase_34 AC 174 ms
14,976 KB
testcase_35 AC 298 ms
18,916 KB
testcase_36 AC 230 ms
16,028 KB
testcase_37 AC 209 ms
15,328 KB
testcase_38 AC 188 ms
14,804 KB
testcase_39 AC 37 ms
10,120 KB
testcase_40 AC 27 ms
9,824 KB
testcase_41 AC 12 ms
8,808 KB
testcase_42 AC 279 ms
17,512 KB
testcase_43 AC 199 ms
14,808 KB
testcase_44 AC 230 ms
16,656 KB
testcase_45 AC 312 ms
18,464 KB
testcase_46 AC 7 ms
8,356 KB
testcase_47 AC 171 ms
14,840 KB
testcase_48 AC 36 ms
9,912 KB
testcase_49 AC 65 ms
11,544 KB
testcase_50 AC 340 ms
18,936 KB
testcase_51 AC 381 ms
20,868 KB
testcase_52 AC 386 ms
20,892 KB
testcase_53 AC 375 ms
20,840 KB
testcase_54 AC 385 ms
20,872 KB
testcase_55 AC 380 ms
20,884 KB
testcase_56 AC 6 ms
8,252 KB
testcase_57 AC 5 ms
8,256 KB
testcase_58 AC 154 ms
14,488 KB
testcase_59 AC 193 ms
15,496 KB
testcase_60 AC 68 ms
11,608 KB
testcase_61 AC 171 ms
14,720 KB
testcase_62 AC 166 ms
14,604 KB
testcase_63 AC 7 ms
8,356 KB
testcase_64 AC 73 ms
11,912 KB
testcase_65 AC 57 ms
11,276 KB
testcase_66 AC 54 ms
10,944 KB
testcase_67 AC 118 ms
13,292 KB
testcase_68 AC 71 ms
11,672 KB
testcase_69 AC 21 ms
9,440 KB
testcase_70 AC 30 ms
9,800 KB
testcase_71 AC 30 ms
9,864 KB
testcase_72 AC 89 ms
12,504 KB
testcase_73 AC 185 ms
15,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

vector<int> imos[200010]; 
int main() {
	int n, m; cin >> n >> m;
	int l[m], r[m], c[m];
	for(int i = 0; i < m; ++i) {
		char cc;
		cin >> l[i] >> r[i] >> cc;
		--l[i];
		imos[l[i]].push_back(i);
		imos[r[i]].push_back(i);
		const char v[] = {'Y', 'K', 'C'};
		for(int j = 0; j < 3; ++j) {
			if(v[j] == cc) c[i] = j;
		}
	}
	set<int> st;
	int cnt[3] = {};
	for(int i = 0; i < n; ++i) {
		for(int x : imos[i]) {
			auto itr = st.find(x);
			if(itr != st.end()) {
				st.erase(itr);
			} else {
				st.insert(x);
			}
		}
		if(st.empty()) continue;
		++cnt[c[*st.begin()]];
	}
	printf("%d %d %d\n", cnt[0], cnt[1], cnt[2]);
	return 0;
}
0