# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
61517 | 2018-07-26T06:26:50 Z | 조민규(#2138) | Election (BOI18_election) | C++11 | 12 ms | 376 KB |
#include <cstdio> #include <cstdlib> #include <cstring> #include <cassert> #include <iostream> #include <algorithm> #include <string> #include <vector> #include <list> #include <stack> #include <queue> #include <deque> #include <set> #include <map> #include <tuple> #include <iterator> using namespace std; char arr[500010]; int main() { //freopen("in", "r", stdin); //freopen("out", "w", stdout); int n, q, i, j; scanf("%d%s%d", &n, arr + 1, &q); for(i = 0; i < q; i++) { int l, r; scanf("%d%d", &l, &r); int c = 0; int mx = 0; for(j = l; j <= r; j++) { if(arr[j] == 'T') c++; else c--; mx = max(mx, c); } int t = 0; for(j = l; j <= r && t < mx; j++) if(arr[j] == 'T') t++; int x = j; c = 0; int mx2 = 0; for(j = r; j >= x; j--) { if(arr[j] == 'T') c++; else c--; mx2 = max(mx2, c); } printf("%d\n", mx + mx2); } return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 12 ms | 376 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 12 ms | 376 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 12 ms | 376 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |