結果

問題 No.945 YKC饅頭
ユーザー 00 Sakuda00 Sakuda
提出日時 2024-04-05 00:15:50
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 262 ms / 2,000 ms
コード長 567 bytes
コンパイル時間 2,281 ms
コンパイル使用メモリ 209,508 KB
実行使用メモリ 13,804 KB
最終ジャッジ日時 2024-10-01 00:41:23
合計ジャッジ時間 12,056 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 3 ms
6,824 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 2 ms
6,816 KB
testcase_13 AC 3 ms
6,824 KB
testcase_14 AC 2 ms
6,820 KB
testcase_15 AC 2 ms
6,820 KB
testcase_16 AC 2 ms
6,816 KB
testcase_17 AC 2 ms
6,824 KB
testcase_18 AC 2 ms
6,816 KB
testcase_19 AC 2 ms
6,816 KB
testcase_20 AC 2 ms
6,816 KB
testcase_21 AC 2 ms
6,816 KB
testcase_22 AC 2 ms
6,816 KB
testcase_23 AC 2 ms
6,820 KB
testcase_24 AC 3 ms
6,824 KB
testcase_25 AC 2 ms
6,816 KB
testcase_26 AC 2 ms
6,824 KB
testcase_27 AC 2 ms
6,824 KB
testcase_28 AC 2 ms
6,820 KB
testcase_29 AC 2 ms
6,816 KB
testcase_30 AC 2 ms
6,820 KB
testcase_31 AC 17 ms
6,824 KB
testcase_32 AC 47 ms
9,600 KB
testcase_33 AC 78 ms
10,112 KB
testcase_34 AC 103 ms
8,192 KB
testcase_35 AC 179 ms
12,288 KB
testcase_36 AC 97 ms
6,816 KB
testcase_37 AC 92 ms
6,820 KB
testcase_38 AC 90 ms
6,820 KB
testcase_39 AC 48 ms
8,028 KB
testcase_40 AC 68 ms
10,752 KB
testcase_41 AC 40 ms
8,448 KB
testcase_42 AC 134 ms
8,064 KB
testcase_43 AC 84 ms
6,820 KB
testcase_44 AC 142 ms
10,752 KB
testcase_45 AC 142 ms
6,912 KB
testcase_46 AC 26 ms
6,876 KB
testcase_47 AC 106 ms
8,576 KB
testcase_48 AC 21 ms
6,820 KB
testcase_49 AC 65 ms
8,448 KB
testcase_50 AC 149 ms
7,552 KB
testcase_51 AC 210 ms
13,160 KB
testcase_52 AC 215 ms
13,312 KB
testcase_53 AC 205 ms
13,032 KB
testcase_54 AC 208 ms
13,184 KB
testcase_55 AC 207 ms
13,160 KB
testcase_56 AC 77 ms
13,804 KB
testcase_57 AC 63 ms
13,160 KB
testcase_58 AC 238 ms
12,800 KB
testcase_59 AC 258 ms
12,800 KB
testcase_60 AC 159 ms
12,800 KB
testcase_61 AC 234 ms
12,672 KB
testcase_62 AC 260 ms
12,800 KB
testcase_63 AC 62 ms
12,800 KB
testcase_64 AC 162 ms
12,800 KB
testcase_65 AC 149 ms
12,800 KB
testcase_66 AC 152 ms
12,672 KB
testcase_67 AC 203 ms
12,672 KB
testcase_68 AC 162 ms
12,800 KB
testcase_69 AC 101 ms
12,800 KB
testcase_70 AC 110 ms
12,672 KB
testcase_71 AC 112 ms
12,800 KB
testcase_72 AC 188 ms
12,800 KB
testcase_73 AC 262 ms
12,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main() {
	int N, M;cin >> N >> M;
	set<int> non;
	for (int i = 1;i <= N;i++) non.insert(i);
	vector<int> ans(3, 0);
	while (M--) {
		int l, r;char c;cin >> l >> r >> c;
		int v = 0;
		if (c == 'K') {
			v = 1;
		} else if (c == 'C') {
			v = 2;
		}
		auto itr = non.lower_bound(l);
		vector<int> er;
		while (itr != non.end()) {
			if (*itr > r) break;
			er.push_back(*itr);
			itr++;
		}
		for (auto nv : er) non.erase(nv);
		ans[v] += (int)er.size();
	}
	cout << ans[0] << " "<< ans[1] << " " << ans[2] << endl;
}
0