結果

問題 No.945 YKC饅頭
ユーザー ransewhaleransewhale
提出日時 2019-12-08 05:26:12
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 350 ms / 2,000 ms
コード長 1,444 bytes
コンパイル時間 1,978 ms
コンパイル使用メモリ 168,924 KB
実行使用メモリ 27,392 KB
最終ジャッジ日時 2024-06-08 11:13:30
合計ジャッジ時間 11,264 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 17 ms
25,728 KB
testcase_01 AC 17 ms
25,728 KB
testcase_02 AC 18 ms
25,600 KB
testcase_03 AC 18 ms
25,856 KB
testcase_04 AC 18 ms
25,856 KB
testcase_05 AC 18 ms
25,856 KB
testcase_06 AC 18 ms
25,856 KB
testcase_07 AC 18 ms
25,728 KB
testcase_08 AC 18 ms
25,856 KB
testcase_09 AC 18 ms
25,856 KB
testcase_10 AC 18 ms
25,728 KB
testcase_11 AC 17 ms
25,728 KB
testcase_12 AC 17 ms
25,984 KB
testcase_13 AC 19 ms
25,856 KB
testcase_14 AC 18 ms
25,728 KB
testcase_15 AC 17 ms
25,728 KB
testcase_16 AC 17 ms
25,728 KB
testcase_17 AC 17 ms
25,856 KB
testcase_18 AC 19 ms
25,728 KB
testcase_19 AC 18 ms
25,856 KB
testcase_20 AC 18 ms
25,728 KB
testcase_21 AC 18 ms
25,728 KB
testcase_22 AC 19 ms
25,856 KB
testcase_23 AC 19 ms
25,856 KB
testcase_24 AC 19 ms
25,856 KB
testcase_25 AC 18 ms
25,856 KB
testcase_26 AC 19 ms
25,856 KB
testcase_27 AC 17 ms
25,856 KB
testcase_28 AC 17 ms
25,856 KB
testcase_29 AC 18 ms
25,728 KB
testcase_30 AC 18 ms
25,728 KB
testcase_31 AC 30 ms
25,984 KB
testcase_32 AC 34 ms
26,752 KB
testcase_33 AC 90 ms
26,880 KB
testcase_34 AC 172 ms
26,496 KB
testcase_35 AC 288 ms
27,136 KB
testcase_36 AC 164 ms
25,856 KB
testcase_37 AC 152 ms
25,984 KB
testcase_38 AC 152 ms
26,112 KB
testcase_39 AC 55 ms
26,368 KB
testcase_40 AC 57 ms
27,008 KB
testcase_41 AC 34 ms
26,624 KB
testcase_42 AC 232 ms
26,496 KB
testcase_43 AC 140 ms
25,856 KB
testcase_44 AC 217 ms
26,880 KB
testcase_45 AC 239 ms
26,368 KB
testcase_46 AC 25 ms
26,368 KB
testcase_47 AC 164 ms
26,624 KB
testcase_48 AC 42 ms
25,856 KB
testcase_49 AC 79 ms
26,624 KB
testcase_50 AC 270 ms
26,496 KB
testcase_51 AC 350 ms
27,264 KB
testcase_52 AC 338 ms
27,392 KB
testcase_53 AC 347 ms
27,264 KB
testcase_54 AC 343 ms
27,392 KB
testcase_55 AC 339 ms
27,392 KB
testcase_56 AC 37 ms
27,392 KB
testcase_57 AC 39 ms
27,392 KB
testcase_58 AC 201 ms
27,392 KB
testcase_59 AC 239 ms
27,264 KB
testcase_60 AC 108 ms
27,392 KB
testcase_61 AC 219 ms
27,392 KB
testcase_62 AC 212 ms
27,392 KB
testcase_63 AC 42 ms
27,392 KB
testcase_64 AC 119 ms
27,264 KB
testcase_65 AC 101 ms
27,392 KB
testcase_66 AC 98 ms
27,392 KB
testcase_67 AC 159 ms
27,392 KB
testcase_68 AC 112 ms
27,392 KB
testcase_69 AC 62 ms
27,392 KB
testcase_70 AC 68 ms
27,392 KB
testcase_71 AC 67 ms
27,264 KB
testcase_72 AC 133 ms
27,392 KB
testcase_73 AC 228 ms
27,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
typedef long long ll;
typedef pair<int, char> P;
const int INF = (1<<30);
const ll INFLL = (1ll<<60);
const ll MOD = (ll)(1e9+7);

#define l_ength size

void mul_mod(ll& a, ll b){
	a *= b;
	a %= MOD;
}

void add_mod(ll& a, ll b){
	a = (a<MOD)?a:(a-MOD);
	b = (b<MOD)?b:(b-MOD);
	a += b;
	a = (a<MOD)?a:(a-MOD);
}

struct node{
	int id,chl,chr,l,r;
	P v;
};

int n,m,s = 0;
node t[816225];
P ans[225816];

int init(int l=0, int r=n){
	int id;
	id = s; ++s;
	t[id].l = l; t[id].r = r;
	t[id].id = id; t[id].v = P(m,'@');
	if(r-l>1){
		t[id].chl = init(l,(l+r)/2);
		t[id].chr = init((l+r)/2,r);
	}
	return id;
}

void update(int a, int b, P v, int i=0, int l=0, int r=n){
	if(b<=l || r<=a){
		return;
	}else if(a<=l && r<=b){
		t[i].v = min(t[i].v,v);
	}else{
		update(a,b,v,t[i].chl,l,(l+r)/2);
		update(a,b,v,t[i].chr,(l+r)/2,r);
	}
}

int main(void){
	int i,l,r,y=0,k=0,c=0,j;
	char ch;
	cin >> n >> m;
	init();
	for(i=0; i<m; ++i){
		cin >> l >> r >> ch;
		update(l-1,r,P(i,ch));
	}
	for(i=0; i<n; ++i){
		l = 0; r = n;
		j = 0; ans[i] = t[j].v;
		while(r-l>1){
			m = (r+l)/2;
			if(i<m){
				j = t[j].chl;
				r = m;
			}else{
				j = t[j].chr;
				l = m;
			}
			ans[i] = min(ans[i],t[j].v);
		}
	}
	for(i=0; i<n; ++i){
		switch(ans[i].second){
			case 'Y':
			++y; break;
			case 'K':
			++k; break;
			case 'C':
			++c; break;
		}
	}
	cout << y << " " << k << " " << c << endl;
	return 0;
}
0