답안 #861389

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
861389 2023-10-16T05:09:22 Z maks007 Election (BOI18_election) C++14
0 / 100
7 ms 348 KB
#include "bits/stdc++.h"

using namespace std;

signed main () {
	int n;
	cin >> n;
	string str;
	cin >> str;
	int q;
	cin >> q;
	while(q --) {
		int l, r;
		cin >> l >> r;
		l --, r --;
		int bal = 0, cnt1 = 0, cnt2 = 0;
		for(int i = l; i <= r; i ++) {
			if(str[i] == 'C') bal ++;
			else if(bal == 0) {
				cnt1 ++;
			}else bal --;
		}
		 bal = 0;
		for(int i = r; i >= l; i --) {
			if(str[i] == 'C') bal ++;
			else if(bal == 0) {
				cnt2 ++;
			}else bal --;
		}
		cout << max(cnt1, cnt2) << "\n";
	}
	return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 7 ms 348 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 7 ms 348 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 7 ms 348 KB Output isn't correct
2 Halted 0 ms 0 KB -