結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
コンテスト
ユーザー Coder123
提出日時 2025-12-29 17:24:42
言語 C++17
(gcc 13.3.0 + boost 1.89.0)
結果
TLE  
実行時間 -
コード長 2,208 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 2,738 ms
コンパイル使用メモリ 227,404 KB
実行使用メモリ 124,672 KB
最終ジャッジ日時 2025-12-29 17:25:24
合計ジャッジ時間 40,610 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 56 TLE * 2
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:36: warning: "INT_MAX" redefined
   36 | #define INT_MAX LLONG_MAX
      | 
In file included from /usr/include/c++/13/climits:42,
                 from /usr/include/x86_64-linux-gnu/c++/13/bits/stdc++.h:38,
                 from main.cpp:10:
/usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h:120: note: this is the location of the previous definition
  120 | #define INT_MAX __INT_MAX__
      | 

ソースコード

diff #
raw source code

/*   Bismillah
*    Author: Akhyar Ahmed Turk
*    Created: 2025-12-29 13:11 (GMT+5)

*    brain["Motivation"].insert("Ya to win hy ya learn");

*    Those who can't remember the past are condemned to repeat it.
*                                                 -Dynamic Programming.
*/
#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
using namespace std;
using namespace __gnu_pbds;

template <typename T>
using ordered_set = tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>;
// use when u need indexing in sets like (when you need lower upper bound while frequently updating set) 
// idx.order_of_key(value) for nums<value idx.order_of_key(value+1) for nums<=value
// idx.find_by_order(n); to get the nth value by order
#define int long long
#define ld long double
#define yesno(b) cout << ((b) ? "YES" : "NO") << "\n";
#define pii pair<int, int>
#define pb push_back
#define f first
#define ss second
#define vi vector<int>
#define vb vector<bool>
#define vvi vector<vi>
#define all(a) a.begin(), a.end()
#define allr(a) a.rbegin(), a.rend()
#define mod 1000000007
#define mod2 998244353
const int inf = 1e17 + 1;
#define INT_MAX LLONG_MAX
#define nl "\n"

#define forn(i, a, b) for (int i = a; i < b; i++)
#define forr(i, a, b) for (int i = a; i >= b; i--)
#define input(vec, n) for(int z = 0; z < (n); z++) cin >> vec[z];

void solve() {
    int n; cin>>n;
    string s; cin>>s;
    vi arr(n); input(arr,n);
    map<int,int> mp;
    forn(i,0,n){
        int a=0,b=0;
        forn(j,i,n){
            a+=arr[j];
            b+=(s[j]=='E');
            mp[a]=max(mp[a],b);
        }
    }
    vi res1={0},res2={0};
    for(auto it:mp){
        if(it.ss<=res2.back()) continue;
        res1.pb(it.f);
        res2.pb(max(it.ss,res2.back()));
    }
    int k ;cin>>k;
    while(k--){
        int a; cin>>a;
        int d=upper_bound(all(res1),a)-res1.begin()-1;
        cout<<res2[d]<<nl;
    }
}

int32_t main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);
// freopen("input.txt", "r", stdin);
// freopen("output.txt", "w", stdout);
    int t=1;
    // cin >> t;
    while (t--) {
        solve();
    }
    return 0;
}
0