#include // created [2019/11/29] 21:47:35 #pragma GCC diagnostic ignored "-Wsign-compare" #pragma GCC diagnostic ignored "-Wsign-conversion" using i32 = int32_t; using i64 = int64_t; using u32 = uint32_t; using u64 = uint64_t; using uint = unsigned int; using usize = std::size_t; using ll = long long; using ull = unsigned long long; using ld = long double; template constexpr T popcount(const T u) { return u ? static_cast(__builtin_popcountll(static_cast(u))) : static_cast(0); } template constexpr T log2p1(const T u) { return u ? static_cast(64 - __builtin_clzll(static_cast(u))) : static_cast(0); } template constexpr T msbp1(const T u) { return log2p1(u); } template constexpr T lsbp1(const T u) { return __builtin_ffsll(u); } template constexpr T clog(const T u) { return u ? log2p1(u - 1) : static_cast(u); } template constexpr bool ispow2(const T u) { return u and (static_cast(u) & static_cast(u - 1)) == 0; } template constexpr T ceil2(const T u) { return static_cast(1) << clog(u); } template constexpr T floor2(const T u) { return u == 0 ? static_cast(0) : static_cast(1) << (log2p1(u) - 1); } template constexpr bool btest(const T mask, const usize ind) { return static_cast((static_cast(mask) >> ind) & static_cast(1)); } template void bset(T& mask, const usize ind) { mask |= (static_cast(1) << ind); } template void breset(T& mask, const usize ind) { mask &= ~(static_cast(1) << ind); } template void bflip(T& mask, const usize ind) { mask ^= (static_cast(1) << ind); } template void bset(T& mask, const usize ind, const bool b) { (b ? bset(mask, ind) : breset(mask, ind)); } template constexpr T bcut(const T mask, const usize ind) { return ind == 0 ? static_cast(0) : static_cast((static_cast(mask) << (64 - ind)) >> (64 - ind)); } template bool chmin(T& a, const T& b) { return (a > b ? a = b, true : false); } template bool chmax(T& a, const T& b) { return (a < b ? a = b, true : false); } constexpr unsigned int mod = 1000000007; template constexpr T inf_v = std::numeric_limits::max() / 4; template constexpr Real pi_v = Real{3.141592653589793238462643383279502884}; template T read() { T v; return std::cin >> v, v; } template auto read(const usize size, Args... args) { std::vector(args...))> ans(size); for (usize i = 0; i < size; i++) { ans[i] = read(args...); } return ans; } template auto reads() { return std::tuple...>{read()...}; } # define SHOW(...) static_cast(0) template std::vector make_v(const usize size, const T v) { return std::vector(size, v); } template auto make_v(const usize size, Args... args) { return std::vector(size, make_v(args...)); } int main() { std::cin.tie(nullptr), std::ios::sync_with_stdio(false); const int N = read(); const auto S = read(); std::vector en(N, 0); for (int i = 0; i < N; i++) { en[i] = (i == 0 ? 0 : en[i - 1]) + (S[i] == 'E'); } auto enemy = [&](const int i, const int j) { return en[j - 1] - (i == 0 ? 0 : en[i - 1]); }; auto A = read(N); for (int i = 1; i < N; i++) { A[i] += A[i - 1]; } auto energy = [&](const int i, const int j) { return A[j - 1] - (i == 0 ? 0 : A[i - 1]); }; std::map mp; mp[0] = 0; for (int i = 0; i < N; i++) { for (int j = i + 1; j <= N; j++) { const ll E = energy(i, j); if (E > 1000000000LL) { break; } chmax(mp[E], enemy(i, j)); } } int max = 0; for (auto& e : mp) { chmax(max, e.second); e.second = max; } const int Q = read(); for (int q = 0; q < Q; q++) { const ll K = read(); const auto it = std::prev(mp.upper_bound(K)); std::cout << it->second << "\n"; } return 0; }