結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー PachicobuePachicobue
提出日時 2019-11-29 21:57:27
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 4,135 bytes
コンパイル時間 3,308 ms
コンパイル使用メモリ 209,404 KB
実行使用メモリ 124,560 KB
最終ジャッジ日時 2023-08-13 05:28:45
合計ジャッジ時間 41,938 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
4,376 KB
testcase_01 AC 83 ms
14,192 KB
testcase_02 AC 106 ms
17,756 KB
testcase_03 AC 315 ms
33,136 KB
testcase_04 AC 766 ms
60,612 KB
testcase_05 AC 308 ms
31,972 KB
testcase_06 AC 377 ms
35,360 KB
testcase_07 AC 472 ms
43,520 KB
testcase_08 TLE -
testcase_09 AC 940 ms
70,804 KB
testcase_10 AC 1,028 ms
74,244 KB
testcase_11 AC 1,889 ms
108,976 KB
testcase_12 AC 2 ms
4,380 KB
testcase_13 AC 2 ms
4,380 KB
testcase_14 AC 2 ms
4,376 KB
testcase_15 AC 2 ms
4,376 KB
testcase_16 AC 2 ms
4,380 KB
testcase_17 AC 106 ms
4,380 KB
testcase_18 AC 1,044 ms
71,740 KB
testcase_19 AC 385 ms
33,672 KB
testcase_20 AC 1,627 ms
98,464 KB
testcase_21 AC 15 ms
5,796 KB
testcase_22 AC 260 ms
27,760 KB
testcase_23 AC 2 ms
4,380 KB
testcase_24 AC 4 ms
4,384 KB
testcase_25 AC 4 ms
4,380 KB
testcase_26 AC 4 ms
4,376 KB
testcase_27 AC 2 ms
4,376 KB
testcase_28 AC 3 ms
4,376 KB
testcase_29 AC 3 ms
4,384 KB
testcase_30 AC 3 ms
4,384 KB
testcase_31 AC 3 ms
4,380 KB
testcase_32 AC 5 ms
4,380 KB
testcase_33 AC 1,793 ms
110,928 KB
testcase_34 AC 1,135 ms
78,208 KB
testcase_35 AC 1,381 ms
84,716 KB
testcase_36 AC 453 ms
38,456 KB
testcase_37 AC 1,476 ms
94,092 KB
testcase_38 AC 422 ms
35,784 KB
testcase_39 AC 1,238 ms
82,920 KB
testcase_40 AC 1,400 ms
88,036 KB
testcase_41 AC 1,409 ms
89,384 KB
testcase_42 AC 1,644 ms
96,128 KB
testcase_43 AC 1,386 ms
90,372 KB
testcase_44 AC 67 ms
12,688 KB
testcase_45 TLE -
testcase_46 AC 21 ms
6,576 KB
testcase_47 AC 245 ms
26,080 KB
testcase_48 AC 1,128 ms
74,204 KB
testcase_49 AC 277 ms
29,464 KB
testcase_50 AC 1,017 ms
71,544 KB
testcase_51 AC 730 ms
58,260 KB
testcase_52 AC 692 ms
54,660 KB
testcase_53 AC 1,962 ms
124,308 KB
testcase_54 AC 678 ms
53,784 KB
testcase_55 AC 16 ms
6,048 KB
testcase_56 AC 1,164 ms
80,712 KB
testcase_57 AC 585 ms
46,856 KB
testcase_58 AC 2 ms
4,376 KB
testcase_59 AC 2 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
// 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<typename T> constexpr T popcount(const T u) { return u ? static_cast<T>(__builtin_popcountll(static_cast<u64>(u))) : static_cast<T>(0); }
template<typename T> constexpr T log2p1(const T u) { return u ? static_cast<T>(64 - __builtin_clzll(static_cast<u64>(u))) : static_cast<T>(0); }
template<typename T> constexpr T msbp1(const T u) { return log2p1(u); }
template<typename T> constexpr T lsbp1(const T u) { return __builtin_ffsll(u); }
template<typename T> constexpr T clog(const T u) { return u ? log2p1(u - 1) : static_cast<T>(u); }
template<typename T> constexpr bool ispow2(const T u) { return u and (static_cast<u64>(u) & static_cast<u64>(u - 1)) == 0; }
template<typename T> constexpr T ceil2(const T u) { return static_cast<T>(1) << clog(u); }
template<typename T> constexpr T floor2(const T u) { return u == 0 ? static_cast<T>(0) : static_cast<T>(1) << (log2p1(u) - 1); }
template<typename T> constexpr bool btest(const T mask, const usize ind) { return static_cast<bool>((static_cast<u64>(mask) >> ind) & static_cast<u64>(1)); }
template<typename T> void bset(T& mask, const usize ind) { mask |= (static_cast<T>(1) << ind); }
template<typename T> void breset(T& mask, const usize ind) { mask &= ~(static_cast<T>(1) << ind); }
template<typename T> void bflip(T& mask, const usize ind) { mask ^= (static_cast<T>(1) << ind); }
template<typename T> void bset(T& mask, const usize ind, const bool b) { (b ? bset(mask, ind) : breset(mask, ind)); }
template<typename T> constexpr T bcut(const T mask, const usize ind) { return ind == 0 ? static_cast<T>(0) : static_cast<T>((static_cast<u64>(mask) << (64 - ind)) >> (64 - ind)); }
template<typename T> bool chmin(T& a, const T& b) { return (a > b ? a = b, true : false); }
template<typename T> bool chmax(T& a, const T& b) { return (a < b ? a = b, true : false); }
constexpr unsigned int mod                  = 1000000007;
template<typename T> constexpr T inf_v      = std::numeric_limits<T>::max() / 4;
template<typename Real> constexpr Real pi_v = Real{3.141592653589793238462643383279502884};

template<typename T>
T read()
{
    T v;
    return std::cin >> v, v;
}
template<typename T, typename... Args>
auto read(const usize size, Args... args)
{
    std::vector<decltype(read<T>(args...))> ans(size);
    for (usize i = 0; i < size; i++) { ans[i] = read<T>(args...); }
    return ans;
}
template<typename... Types>
auto reads() { return std::tuple<std::decay_t<Types>...>{read<Types>()...}; }
#    define SHOW(...) static_cast<void>(0)

template<typename T>
std::vector<T> make_v(const usize size, const T v) { return std::vector<T>(size, v); }
template<typename... Args>
auto make_v(const usize size, Args... args) { return std::vector<decltype(make_v(args...))>(size, make_v(args...)); }
int main()
{
    const int N  = read<int>();
    const auto S = read<std::string>();
    std::vector<int> 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<ll>(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<ll, int> mp;
    mp[0] = 0;
    for (int i = 0; i < N; i++) {
        for (int j = i + 1; j <= N; j++) {
            chmax(mp[energy(i, j)], enemy(i, j));
        }
    }
    int max = 0;
    for (auto& e : mp) {
        chmax(max, e.second);
        e.second = max;
    }
    SHOW(mp);
    const int Q = read<int>();
    for (int q = 0; q < Q; q++) {
        const ll K    = read<ll>();
        const auto it = std::prev(mp.upper_bound(K));
        std::cout << it->second << std::endl;
    }
    return 0;
}
0