結果

問題 No.945 YKC饅頭
ユーザー polylogKpolylogK
提出日時 2019-12-12 21:57:07
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 219 ms / 2,000 ms
コード長 1,001 bytes
コンパイル時間 2,870 ms
コンパイル使用メモリ 173,916 KB
実行使用メモリ 14,592 KB
最終ジャッジ日時 2024-06-25 17:51:06
合計ジャッジ時間 9,273 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 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 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 3 ms
5,376 KB
testcase_18 AC 3 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 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 3 ms
5,376 KB
testcase_25 AC 3 ms
5,376 KB
testcase_26 AC 2 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 11 ms
5,376 KB
testcase_32 AC 6 ms
6,272 KB
testcase_33 AC 41 ms
8,320 KB
testcase_34 AC 96 ms
8,960 KB
testcase_35 AC 177 ms
13,316 KB
testcase_36 AC 114 ms
7,532 KB
testcase_37 AC 109 ms
7,516 KB
testcase_38 AC 104 ms
7,424 KB
testcase_39 AC 27 ms
6,528 KB
testcase_40 AC 21 ms
7,660 KB
testcase_41 AC 9 ms
6,144 KB
testcase_42 AC 150 ms
10,440 KB
testcase_43 AC 95 ms
7,088 KB
testcase_44 AC 127 ms
11,056 KB
testcase_45 AC 162 ms
9,908 KB
testcase_46 AC 4 ms
5,376 KB
testcase_47 AC 102 ms
9,216 KB
testcase_48 AC 23 ms
5,376 KB
testcase_49 AC 44 ms
7,424 KB
testcase_50 AC 169 ms
10,756 KB
testcase_51 AC 207 ms
14,584 KB
testcase_52 AC 219 ms
14,588 KB
testcase_53 AC 202 ms
14,588 KB
testcase_54 AC 200 ms
14,588 KB
testcase_55 AC 217 ms
14,592 KB
testcase_56 AC 5 ms
8,164 KB
testcase_57 AC 5 ms
8,192 KB
testcase_58 AC 132 ms
12,288 KB
testcase_59 AC 163 ms
13,056 KB
testcase_60 AC 58 ms
10,036 KB
testcase_61 AC 145 ms
12,436 KB
testcase_62 AC 139 ms
12,412 KB
testcase_63 AC 7 ms
8,064 KB
testcase_64 AC 64 ms
10,336 KB
testcase_65 AC 49 ms
9,984 KB
testcase_66 AC 47 ms
9,724 KB
testcase_67 AC 101 ms
11,392 KB
testcase_68 AC 60 ms
10,112 KB
testcase_69 AC 22 ms
8,832 KB
testcase_70 AC 26 ms
8,960 KB
testcase_71 AC 27 ms
9,036 KB
testcase_72 AC 85 ms
10,860 KB
testcase_73 AC 157 ms
12,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std::literals::string_literals;
using i64 = std::int_fast64_t;
using std::cout;
using std::endl;
using std::cin;

template<typename T>
std::vector<T> make_v(size_t a){return std::vector<T>(a);}

template<typename T,typename... Ts>
auto make_v(size_t a,Ts... ts){
  return std::vector<decltype(make_v<T>(ts...))>(a,make_v<T>(ts...));
}

int main() {
	int n, m; scanf("%d%d", &n, &m);
	std::vector<int> L(m), R(m);
	std::vector<char> T(m);
	std::vector<std::vector<int>> vec(n);
	for(int i = 0; i < m; i++) {
		cin >> L[i] >> R[i] >> T[i];
		L[i]--;
		
		vec[L[i]].push_back(i);
	}
	
	int Y = 0, K = 0, C = 0;
	std::priority_queue<int, std::vector<int>, std::greater<int>> qu;
	for(int i = 0; i < n; i++) {
		while(!qu.empty() and R[qu.top()] <= i) qu.pop();
		for(auto id: vec[i]) qu.push(id);
		if(qu.empty()) continue;
		
		Y += (T[qu.top()] == 'Y');
		K += (T[qu.top()] == 'K');
		C += (T[qu.top()] == 'C');
	}
	
	printf("%d %d %d\n", Y, K, C);
	return 0;
}
0