はまやんはまやんはまやん

hamayanhamayan's blog

Red or Blue [エクサウィザーズ 2019 B]

https://atcoder.jp/contests/exawizards2019/tasks/exawizards2019_b

解説

https://atcoder.jp/contests/exawizards2019/submissions/4764937

BとRの数を数えて、B<RならYesと答える問題。
どんなふうに数えてもいいが、map<char,int>で数えている。

int N;
string s;
//---------------------------------------------------------------------------------------------------
void _main() {
	cin >> N >> s;
	map<char, int> cnt;
	fore(c, s) cnt[c]++;
 
	if (cnt['B'] < cnt['R']) cout << "Yes" << endl;
	else cout << "No" << endl;
}