#include using namespace std; typedef long long int ll; typedef unsigned long long ull; mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count()); ll myRand(ll B) { return (ull)rng() % B; } int main(){ cin.tie(nullptr); ios::sync_with_stdio(false); int n; cin >> n; string s; cin >> s; vector a(n); for(int i=0;i> a[i]; if(s[i]=='B')a[i]*=-1; } ll res=0; for(int _=0;_<2;_++){ for(int i=0;i