結果

問題 No.945 YKC饅頭
ユーザー ransewhaleransewhale
提出日時 2019-12-08 04:41:24
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,444 bytes
コンパイル時間 1,467 ms
コンパイル使用メモリ 168,976 KB
実行使用メモリ 27,392 KB
最終ジャッジ日時 2024-06-08 10:55:51
合計ジャッジ時間 9,124 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 14 ms
25,728 KB
testcase_01 AC 14 ms
25,728 KB
testcase_02 AC 15 ms
25,728 KB
testcase_03 AC 15 ms
25,856 KB
testcase_04 AC 14 ms
25,856 KB
testcase_05 AC 13 ms
25,856 KB
testcase_06 AC 15 ms
25,728 KB
testcase_07 AC 15 ms
25,728 KB
testcase_08 AC 14 ms
25,728 KB
testcase_09 AC 13 ms
25,728 KB
testcase_10 AC 13 ms
25,728 KB
testcase_11 AC 14 ms
25,728 KB
testcase_12 AC 14 ms
25,728 KB
testcase_13 AC 14 ms
25,728 KB
testcase_14 AC 15 ms
25,728 KB
testcase_15 AC 13 ms
25,728 KB
testcase_16 AC 13 ms
25,728 KB
testcase_17 AC 13 ms
25,856 KB
testcase_18 AC 13 ms
25,856 KB
testcase_19 AC 13 ms
25,728 KB
testcase_20 AC 14 ms
25,728 KB
testcase_21 AC 13 ms
25,728 KB
testcase_22 AC 13 ms
25,856 KB
testcase_23 AC 14 ms
25,728 KB
testcase_24 AC 13 ms
25,856 KB
testcase_25 AC 14 ms
25,856 KB
testcase_26 AC 14 ms
25,856 KB
testcase_27 AC 14 ms
25,856 KB
testcase_28 AC 13 ms
25,856 KB
testcase_29 AC 14 ms
25,600 KB
testcase_30 AC 14 ms
25,728 KB
testcase_31 AC 24 ms
26,112 KB
testcase_32 AC 25 ms
26,752 KB
testcase_33 AC 63 ms
26,880 KB
testcase_34 AC 122 ms
26,496 KB
testcase_35 AC 208 ms
27,008 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 123 ms
25,984 KB
testcase_39 AC 47 ms
26,368 KB
testcase_40 AC 46 ms
27,008 KB
testcase_41 AC 27 ms
26,496 KB
testcase_42 AC 174 ms
26,496 KB
testcase_43 WA -
testcase_44 AC 156 ms
26,880 KB
testcase_45 WA -
testcase_46 AC 22 ms
26,368 KB
testcase_47 AC 121 ms
26,624 KB
testcase_48 AC 36 ms
25,856 KB
testcase_49 AC 62 ms
26,624 KB
testcase_50 AC 220 ms
26,496 KB
testcase_51 AC 246 ms
27,392 KB
testcase_52 AC 248 ms
27,392 KB
testcase_53 AC 244 ms
27,392 KB
testcase_54 AC 247 ms
27,392 KB
testcase_55 AC 250 ms
27,392 KB
testcase_56 AC 32 ms
27,264 KB
testcase_57 AC 31 ms
27,392 KB
testcase_58 AC 147 ms
27,392 KB
testcase_59 AC 174 ms
27,392 KB
testcase_60 AC 83 ms
27,264 KB
testcase_61 AC 167 ms
27,392 KB
testcase_62 AC 152 ms
27,392 KB
testcase_63 AC 35 ms
27,264 KB
testcase_64 AC 87 ms
27,392 KB
testcase_65 AC 87 ms
27,264 KB
testcase_66 AC 73 ms
27,392 KB
testcase_67 AC 119 ms
27,264 KB
testcase_68 AC 85 ms
27,392 KB
testcase_69 AC 48 ms
27,392 KB
testcase_70 AC 53 ms
27,264 KB
testcase_71 AC 57 ms
27,392 KB
testcase_72 AC 101 ms
27,392 KB
testcase_73 AC 166 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,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(n,'@');
	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 m,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