# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
480826 | 2021-10-18T10:00:36 Z | Karabasan | Election (BOI18_election) | C++17 | 21 ms | 332 KB |
#include <bits/stdc++.h> #define ll long long #define fast1 ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL); using namespace std; #pragma GCC optimize("Ofast") #pragma GCC target("fma,sse,sse2,sse3,ssse3,sse4") #pragma GCC optimize("unroll-loops") int n,t,m; int pre[500005]; void solve() { string AAA; string s="G"; cin>>n; cin>>AAA; s+=AAA; int q; scanf("%d",&q); while(q--) { int a,b; cin>>a>>b; int c=0; int t=0; int mx=0; for(int i=a;i<=n;i++) { if(s[i]=='T') c++; else c--; mx=max(mx,c); } for(int i=b;i>=a;i--) { if(s[i]=='T') t++; else t--; mx=max(mx,t); } cout<<mx<<endl; } } int main() { // scanf("%d",&t); t=1; while(t--) { solve(); } return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 21 ms | 332 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 21 ms | 332 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 21 ms | 332 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |