結果

問題 No.945 YKC饅頭
ユーザー SSRSSSRS
提出日時 2020-11-27 16:27:08
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 441 ms / 2,000 ms
コード長 830 bytes
コンパイル時間 1,239 ms
コンパイル使用メモリ 86,196 KB
実行使用メモリ 21,476 KB
最終ジャッジ日時 2024-07-23 21:37:11
合計ジャッジ時間 12,543 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 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 3 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 3 ms
5,376 KB
testcase_14 AC 3 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 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 6 ms
6,528 KB
testcase_33 AC 69 ms
9,620 KB
testcase_34 AC 190 ms
12,672 KB
testcase_35 AC 351 ms
18,596 KB
testcase_36 AC 268 ms
12,544 KB
testcase_37 AC 243 ms
11,904 KB
testcase_38 AC 219 ms
11,648 KB
testcase_39 AC 38 ms
7,168 KB
testcase_40 AC 32 ms
8,144 KB
testcase_41 AC 11 ms
6,016 KB
testcase_42 AC 321 ms
15,872 KB
testcase_43 AC 227 ms
11,136 KB
testcase_44 AC 253 ms
15,360 KB
testcase_45 AC 370 ms
16,128 KB
testcase_46 AC 5 ms
5,376 KB
testcase_47 AC 193 ms
12,800 KB
testcase_48 AC 39 ms
5,504 KB
testcase_49 AC 71 ms
8,960 KB
testcase_50 AC 382 ms
17,280 KB
testcase_51 AC 413 ms
21,468 KB
testcase_52 AC 441 ms
21,344 KB
testcase_53 AC 419 ms
21,332 KB
testcase_54 AC 431 ms
21,376 KB
testcase_55 AC 429 ms
21,476 KB
testcase_56 AC 6 ms
7,884 KB
testcase_57 AC 5 ms
7,936 KB
testcase_58 AC 151 ms
14,332 KB
testcase_59 AC 189 ms
15,456 KB
testcase_60 AC 64 ms
11,136 KB
testcase_61 AC 168 ms
14,592 KB
testcase_62 AC 157 ms
14,464 KB
testcase_63 AC 8 ms
8,076 KB
testcase_64 AC 72 ms
11,520 KB
testcase_65 AC 62 ms
10,776 KB
testcase_66 AC 57 ms
10,612 KB
testcase_67 AC 117 ms
12,928 KB
testcase_68 AC 68 ms
11,392 KB
testcase_69 AC 23 ms
9,216 KB
testcase_70 AC 29 ms
9,344 KB
testcase_71 AC 30 ms
9,344 KB
testcase_72 AC 95 ms
12,136 KB
testcase_73 AC 187 ms
14,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <set>
using namespace std;
int main(){
	int N,M;
	cin >> N >> M;
	vector<int> L(M), R(M);
	vector<char> T(M);
	for (int i = 0; i < M; i++){
		cin >> L[i] >> R[i] >> T[i];
		L[i]--;
	}
	vector<vector<pair<int, char>>> d(N + 1);
	for (int i = 0; i < M; i++){
		d[L[i]].push_back(make_pair(i, T[i]));
		d[R[i]].push_back(make_pair(i, T[i]));
	}
	int Y = 0, K = 0, C = 0;
	set<pair<int, int>> st;
	for (int i = 0; i < N; i++){
		int cnt = d[i].size();
		for (int j = 0; j < cnt; j++){
			if (!st.count(d[i][j])){
				st.insert(d[i][j]);
			} else {
				st.erase(d[i][j]);
			}
		}
		if (!st.empty()){
			char ch = (*st.begin()).second;
			if (ch == 'Y'){
				Y++;
			}
			if (ch == 'K'){
				K++;
			}
			if (ch == 'C'){
				C++;
			}
		}
	}
	cout << Y << ' ' << K << ' ' << C << endl;
}
0