QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#879801#5415. RopewaySorahISAAC ✓218ms17432kbC++2312.4kb2025-02-02 14:47:082025-02-02 14:47:13

Judging History

This is the latest submission verdict.

  • [2025-02-02 14:47:13]
  • Judged
  • Verdict: AC
  • Time: 218ms
  • Memory: 17432kb
  • [2025-02-02 14:47:08]
  • Submitted

answer

#ifndef SorahISA
#define SorahISA
#include SorahISA __FILE__ SorahISA

const int INF = LLONG_MAX >> 2;

void solve() {
    int N, K; cin >> N >> K;
    
    vector<int> A(N+2, 0);
    for (int i = 1; i <= N; ++i) cin >> A[i];
    
    string S; cin >> S, S = "1" + S + "1";
    
    set<int> must;
    for (int i = 0; i <= N+1; ++i) { if (S[i] == '1') must.ee(i); }
    
    vector<int> dpL(N+2), dpR(N+2);
    {
        deque<int> deq{0};
        for (int i = 1; i <= N+1; ++i) {
            if (deq[0] < i - K) deq.pf();
            dpL[i] = dpL[deq[0]] + A[i];
            if (S[i] == '1') deq.clear();
            while (SZ(deq) and dpL[i] <= dpL[deq.back()]) deq.pb();
            deq.eb(i);
        }
    }
    {
        deque<int> deq{N+1};
        for (int i = N; i >= 0; --i) {
            if (deq[0] > i + K) deq.pf();
            dpR[i] = dpR[deq[0]] + A[i];
            if (S[i] == '1') deq.clear();
            while (SZ(deq) and dpR[i] <= dpR[deq.back()]) deq.pb();
            deq.eb(i);
        }
    }
    
    int Q; cin >> Q;
    
    for (int q = 1; q <= Q; ++q) {
        int p, v; cin >> p >> v;
        if (S[p] == '1') print(dpL.back() - A[p] + v);
        else {
            vector<int> cL(K+1, INF), pR(K+1, INF);
            cL[0] = dpL[p] - A[p] + v, pR[0] = dpR[p] - A[p] + v;
            for (int l = p-1, i = 1; l >= p-K; --l, ++i) {
                cL[i] = dpL[l];
                if (S[l] == '1') break;
            }
            for (int r = p+1, i = 1; r <= p+K; ++r, ++i) {
                pR[i] = dpR[r];
                if (S[r] == '1') break;
            }
            for (int i = 1; i <= K; ++i) chmin(pR[i], pR[i-1]);
            
            int ans = INF;
            for (int i = 0; i <= K; ++i) chmin(ans, cL[i] + pR[K-i]);
            print(ans);
        }
    }
}

int32_t main() {
    fastIO();
    
    int t = 1; cin >> t;
    for (int _ = 1; _ <= t; ++_) {
        // cout << "Case #" << _ << ": ";
        solve();
    }
    
    return 0;
}

#else

#ifdef local
#define _GLIBCXX_DEBUG 1
#endif
#pragma GCC optimize("Ofast", "unroll-loops")
#include <bits/stdc++.h>
using namespace std;
// #include <bits/extc++.h>
// #include <tr2/dynamic_bitset>

using i64 = long long;
using i128 = __int128;
#define int i64
using f80 = long double;
using f128 = __float128;
#define double f80
using pii = pair<int, int>;
template <typename T> using Prior = std::priority_queue<T>;
template <typename T> using prior = std::priority_queue<T, vector<T>, greater<T>>;

// #define X first
// #define Y second
#define eb emplace_back
#define ef emplace_front
#define ee emplace
#define pb pop_back
#define pf pop_front
#define ALL(x) begin(x), end(x)
#define RALL(x) rbegin(x), rend(x)
#define SZ(x) ((int)(x).size())
#define popcnt(x) __builtin_popcountll(x)

// template <size_t D, typename T> struct Vec : vector<Vec<D-1, T>> {
//     static_assert(D >= 1, "Vector dimension must be greater than zero!");
//     template <typename... Args> Vec(int n = 0, Args... args) : vector<Vec<D-1, T>>(n, Vec<D-1, T>(args...)) {}
// };

// template <typename T> struct Vec<1, T> : vector<T> {
//     Vec(int n = 0, const T& val = T()) : vector<T>(n, val) {}
// };

template <typename T> ostream& operator << (ostream &os, const vector<T> &vec)
{ for (size_t i = 0; i < size(vec); ++i) { if (i) os << " "; os << vec[i]; } return os; }

#ifdef local
#define fastIO() void()
#define debug(...) \
    _color.emplace_back("\u001b[31m"), \
    fprintf(stderr, "%sAt [%s], line %d: (%s) = ", _color.back().c_str(), __FUNCTION__, __LINE__, #__VA_ARGS__), \
    _do(__VA_ARGS__), _color.pop_back(), \
    fprintf(stderr, "%s", _color.back().c_str())
#define print(...) \
    fprintf(stdout, "%s", "\u001b[36m"), \
    _P(__VA_ARGS__), \
    fprintf(stdout, "%s", "\u001b[0m")

deque<string> _color{"\u001b[0m"};

template <typename T> concept is_string = is_same_v<T, string&> or is_same_v<T, const string&>;
template <typename T> concept is_iterable = requires (T _t) { begin(_t); };

template <typename T> inline void _print_err(T &&_t);
template <typename T> inline void _print_err(T &&_t) requires is_iterable<T> and (not is_string<T>);
template <size_t I, typename ...U> inline typename enable_if<I == sizeof...(U), void>::type _print_err(const tuple<U...> &);
template <size_t I, typename ...U> inline typename enable_if<I <  sizeof...(U), void>::type _print_err(const tuple<U...> &_t);
template <size_t I, typename ...U> inline typename enable_if<I == sizeof...(U), void>::type _print_err(tuple<U...> &);
template <size_t I, typename ...U> inline typename enable_if<I <  sizeof...(U), void>::type _print_err(tuple<U...> &_t);
template <typename T, typename U> ostream& operator << (ostream &os, const pair<T, U> &_tu);

inline void _do() { cerr << "\n"; }
template <typename T> inline void _do(T &&_t) { _print_err(_t), cerr << "\n"; }
template <typename T, typename ...U> inline void _do(T &&_t, U &&..._u) { _print_err(_t), cerr << ", ", _do(_u...); }
#else
#define fastIO() cin.tie(0)->sync_with_stdio(0)
#define debug(...) void()
#define print(...) _P(__VA_ARGS__)
#endif

inline void _P() { cout << "\n"; }
template <typename T> inline void _P(T &&_t) { cout << _t << "\n"; }
template <typename T, typename ...U> inline void _P(T &&_t, U &&..._u) { cout << _t << " ", _P(_u...); }

mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count());

inline int getRand(int L, int R) {
    if (L > R) swap(L, R);
    return (int)(rng() % ((uint64_t)R - L + 1) + L);
}

template <typename T, typename U> bool chmin(T &lhs, U rhs) { return lhs > rhs ? lhs = rhs, 1 : 0; }
template <typename T, typename U> bool chmax(T &lhs, U rhs) { return lhs < rhs ? lhs = rhs, 1 : 0; }

template <typename T> void make_unique(vector<T> &vec) {
    if (not is_sorted(ALL(vec))) sort(ALL(vec));
    vec.erase(unique(ALL(vec)), end(vec));
}

/// below are Fast I/O and _print_err templates ///

/*
/// Fast I/O by FHVirus ///
/// https://fhvirus.github.io/blog/2020/fhvirus-io/ ///

#include <unistd.h>

const int S = 65536;

int OP = 0;
char OB[S];

inline char RC() {
    static char buf[S], *p = buf, *q = buf;
    return p == q and (q = (p = buf) + read(0, buf, S)) == buf ? -1 : *p++;
}

inline int RI() {
    static char c;
    int a;
    while (((c = RC()) < '0' or c > '9') and c != '-' and c != -1);
    if (c == '-') {
        a = 0;
        while ((c = RC()) >= '0' and c <= '9') a *= 10, a -= c ^ '0';
    }
    else {
        a = c ^ '0';
        while ((c = RC()) >= '0' and c <= '9') a *= 10, a += c ^ '0';
    }
    return a;
}

inline void WI(int n, char c = '\n') {
    static char buf[20], p;
    if (n == 0) OB[OP++] = '0';
    p = 0;
    if (n < 0) {
        OB[OP++] = '-';
        while (n) buf[p++] = '0' - (n % 10), n /= 10;
    }
    else {
        while (n) buf[p++] = '0' + (n % 10), n /= 10;
    }
    for (--p; p >= 0; --p) OB[OP++] = buf[p];
    OB[OP++] = c;
    if (OP > S-20) write(1, OB, OP), OP = 0;
}

/// Fast I/O by FHVirus ///
/// https://fhvirus.github.io/blog/2020/fhvirus-io/ ///
*/

#ifdef local

template <typename T> inline void _print_err(T &&_t) { cerr << _t; }

template <typename T> inline void _print_err(T &&_t) requires is_iterable<T> and (not is_string<T>) {
    _color.emplace_back(_color.back()), ++_color.back()[3];
    cerr << _color.back() << "[";
    for (bool _first = true; auto &_x : _t) {
        if (!_first) cerr << ", ";
        _print_err(_x), _first = false;
    }
    cerr << "]" << (_color.pop_back(), _color.back());
}

template <typename T, typename U> ostream& operator << (ostream &os, const pair<T, U> &_tu) {
    _color.emplace_back(_color.back()), ++_color.back()[3];
    cerr << _color.back() << "(";
    _print_err(_tu.first), cerr << ", ", _print_err(_tu.second);
    cerr << ")" << (_color.pop_back(), _color.back());
    return os;
}

template <size_t I = 0, typename ...U> inline typename enable_if<I == sizeof...(U), void>::type _print_err(const tuple<U...> &) {
    cerr << ")" << (_color.pop_back(), _color.back());
}

template <size_t I = 0, typename ...U> inline typename enable_if<I <  sizeof...(U), void>::type _print_err(const tuple<U...> &_t) {
    if (!I) {
        _color.emplace_back(_color.back()), ++_color.back()[3];
        cerr << _color.back();
    }
    cerr << (I ? ", " : "("), _print_err(get<I>(_t)), _print_err<I+1, U...>(_t);
}

template <size_t I = 0, typename ...U> inline typename enable_if<I == sizeof...(U), void>::type _print_err(tuple<U...> &) {
    cerr << ")" << (_color.pop_back(), _color.back());
}

template <size_t I = 0, typename ...U> inline typename enable_if<I <  sizeof...(U), void>::type _print_err(tuple<U...> &_t) {
    if (!I) {
        _color.emplace_back(_color.back()), ++_color.back()[3];
        cerr << _color.back();
    }
    cerr << (I ? ", " : "("), _print_err(get<I>(_t)), _print_err<I+1, U...>(_t);
}

#endif

#endif

/**
 *                                                                                                                 
 *                                                                                                                 
 *                                                                                                                 
 *                            iiiiii         iiiiiiiiii       iiiiiiiiiiiiii                                       
 *                       iiiiiiiiiiiii   iiiiiii    iiii    iiiiiiiiiiiiiii                          ii   iiii     
 *                    iiiiiiii     iiiiiiiii         iiii       iiii iii              iii          iiiiiiiiii      
 *                 iiiiiii          iiiiii           iiii    iiii   ii           iiiiiiiiii      iiii iiii         
 *               iiiiii            iiiii             iiii iiii        iii      iiii    iiiiiiiiiiiiiiiii  ii       
 *             iiiiii            iiiiiii            iiiiiii       iiiiiiii   iii    iiiiiiiiiiiiii iii  iiii       
 *           iiiiii             iiiiiii            iiiii   ii   iiii       iiiiiiiiiii iiii  iii iiii iiii      iii
 *          iiiii              iiiiiiii       ii        iiiii iiii    iiiiiiiii        iii iii  iii  iii  ii  iiii 
 *        iiiiii              iiiiiiii      iiiii     iiiii iiiiiiiiiiiiiiii         iii  iii  ii  iii  iii iiii   
 *       iiiii                 iiiiii     iiii     iiiiii iiiiiii    iii iii       iiii  ii   i   ii  iii  iii     
 *     iiiiii                            iiii  iiiiiiiiiiiiiii       iii iiii   iiiii  iii  ii  iii  iii  ii       
 *    iiiii                              iiiiiiii iiiiiiiiii       iiii   iiiiiiiii            ii  iii  ii         
 *   iiiii                                     iiiiii  iiii      iiiii              iii      ii   ii  i            
 * iiiiii                                  iiiiiiii   iiiii    iiiii                        ii  ii   ii            
 * iiiii                                iiii  iiii    iiiiiiiiiiii                             ii                  
 *  iii                              iiii   iiii       iiiiiiii                                                    
 *                                iiiii   iiii                                                                     
 *                              iiii     iiii                                                                      
 *                            iiii    iiiii                                                                        
 *                          iii     iiiii                                                                          
 *                        iii     iiiii                                                                            
 *                       iii   iiiiii                                                                              
 *                       iiiiiiiii                                                                                 
 *                       iiiiii                                                                                    
 *                                                                                                                 
 *                                                                                                                 
 *                                                                                                                 
**/

详细

Test #1:

score: 100
Accepted
time: 1ms
memory: 3712kb

input:

3
10 3
5 10 7 100 4 3 12 5 100 1
0001000010
2
2 3
6 15
5 6
1 1 1 1 1
00000
1
3 100
5 6
1 1 1 1 1
00100
1
3 100

output:

206
214
0
100

result:

ok 4 number(s): "206 214 0 100"

Test #2:

score: 0
Accepted
time: 2ms
memory: 3712kb

input:

500
19 6
285203460 203149294 175739375 211384407 323087820 336418462 114884618 61054702 243946442 19599175 51974474 285317523 222489944 26675167 300331960 1412281 324105264 33722550 169011266
1111111110110100011
18
3 127056246
5 100630226
14 301161052
2 331781882
5 218792226
2 190274295
12 49227476
...

output:

2472886431
2299111966
2796055445
2650202148
2417273966
2508694561
2285479513
2521569560
2521569560
2240907690
2577284958
2521569560
2766700195
2511807344
2521569560
2438434986
2669077215
2682112324
470735446
470735446
211705888
564509290
715543137
470735446
470735446
18
19
19
19
20
19
54
849950346
8...

result:

ok 5277 numbers

Test #3:

score: 0
Accepted
time: 4ms
memory: 3840kb

input:

50
183 160
22617237 21369258 39718669 4582413 28629717 25947766 1690897 19844235 35568283 42909820 21829213 70588436 8472484 53107624 21547259 11440081 6630789 5896457 19770793 30204510 29796593 27689811 39350369 21646987 36362667 38164292 13428410 54681069 24526477 58941286 70890011 43730474 388615...

output:

5303746210
5262479222
5346682277
5299354906
5290045662
5350552810
5343191051
5268759163
5299354906
5340227887
5299354906
5253956732
5289945955
5230918240
5287812187
5299354906
5299354906
5273800386
5299354906
5299354906
5353471727
5283662384
5230330060
5319166005
5338060400
5304825609
5268929476
526...

result:

ok 9541 numbers

Test #4:

score: 0
Accepted
time: 138ms
memory: 17088kb

input:

3
500000 891
806445768 895003544 461699845 184479965 853541910 593542573 667984604 465354540 303586741 243665567 285056069 294245042 675066412 456713460 215929340 756894934 773828574 317143965 451366539 891390118 436168373 633752416 78781758 298770626 35280548 226923750 96421159 523108871 265102517 ...

output:

5202946193
5202946193
5202946193
5202946193
5202946193
5202946193
5202946193
5202946193
5202946193
5202946193
5202946193
5202946193
5202946193
5202946193
5202946193
5202946193
5202946193
5202946193
5202946193
5202946193
5202946193
5202946193
5202946193
5202946193
5202946193
5202946193
5202946193
520...

result:

ok 9000 numbers

Test #5:

score: 0
Accepted
time: 212ms
memory: 17200kb

input:

4
500000 3000
303543765 129078653 192039183 226458565 208138322 436645868 210834986 135457074 162914826 137413668 192916902 146302909 434058637 370665799 433071720 460608259 413021067 44008462 416238964 258228162 317315155 28299542 422136622 102236305 489978791 223662501 132197157 47793593 265792210...

output:

50490529
50490529
50490529
50490529
50490529
50490529
50490529
50490529
50490529
50490529
50490529
50490529
50490529
50490529
50490529
50490529
50490529
50490529
50490529
50490529
50490529
50490529
50490529
50490529
50490529
50490529
50490529
50490529
50490529
50490529
50490529
50490529
50490529
504...

result:

ok 10000 numbers

Test #6:

score: 0
Accepted
time: 109ms
memory: 17056kb

input:

3
500000 895
688 1201 2221 3857 4357 4465 8482 8585 9839 11049 11429 11462 11467 12642 13620 14171 14220 14419 15332 17522 18107 18753 18851 18863 18915 20273 20374 20482 22320 22934 24333 25223 25947 26879 27015 27794 27850 29892 31082 31103 35023 35611 36010 36365 36452 36708 36830 37302 39844 427...

output:

102387246746
102601622426
102404770741
102607362161
102607362161
102607362161
102475496180
102558851848
102607403181
102607362161
102427271560
102593532165
102583224195
102607362161
102607362161
102607362161
102605413877
102607362161
102607362161
102607362161
102607362161
102607362161
102607362161
1...

result:

ok 9000 numbers

Test #7:

score: 0
Accepted
time: 213ms
memory: 17328kb

input:

4
500000 3000
807 3313 3431 3532 3653 4229 4574 5708 6325 7571 8354 11026 11363 17596 18919 20930 23420 25860 26462 27514 29428 30001 31416 33806 35417 35902 36640 37602 38082 40496 43170 44783 45474 46146 48538 49134 49711 55502 56776 56805 57172 62132 62994 66887 69086 70397 70840 71041 74735 7581...

output:

53400340472
53262820133
53408913719
53408913719
53139987488
53408913719
53391409768
53408913719
53297244457
53408913719
53408913719
53408913719
53408913719
53408913719
53408913719
53408913719
53370502963
53408913719
53408913719
53408913719
53408913719
53408913719
53183451361
53408913719
53250342681
...

result:

ok 10000 numbers

Test #8:

score: 0
Accepted
time: 116ms
memory: 17208kb

input:

3
500000 898
72235410 72235201 72234995 72234626 72234618 72234521 72234278 72234246 72234049 72233851 72233816 72233538 72233508 72233443 72233401 72233339 72233290 72233253 72233209 72233115 72233082 72233035 72232958 72232727 72232634 72232375 72232328 72232273 72232147 72231963 72231949 72231774...

output:

20193388372
20193082246
20193388372
20193388372
20137454774
20188193632
20193388372
20142612908
20193388372
20193388372
20193388372
20193388372
20193388372
20193388372
20138539830
20187126013
20193388372
20193388372
20193388372
20193388372
20186094266
20193388372
20193388372
20193388372
20193388372
...

result:

ok 9000 numbers

Test #9:

score: 0
Accepted
time: 188ms
memory: 17312kb

input:

4
500000 3000
940751349 940750988 940750901 940750476 940748407 940746205 940745797 940741835 940740148 940736196 940735197 940734866 940730194 940729360 940725799 940725665 940725655 940725053 940723831 940721542 940721363 940717981 940717755 940714833 940712714 940711645 940710684 940709233 940708...

output:

77887099213
77887099213
77887099213
77887099213
77887099213
77887099213
77887099213
77828029837
77887099213
77887099213
77671399735
77743075018
77549812395
77887099213
77887099213
77817237157
77887099213
77887099213
77887099213
77887099213
77887099213
77887099213
77887099213
77887099213
77887099213
...

result:

ok 10000 numbers

Test #10:

score: 0
Accepted
time: 101ms
memory: 17432kb

input:

3
500000 197
249644882 249644882 249644882 210710900 249644882 249644882 249644882 249644882 249644882 249644882 249644882 249644882 249644882 249644882 249644882 245319185 249644882 249644882 249644882 78092123 249644882 249644882 249644882 249644882 249644882 249644882 249644882 249644882 24964488...

output:

131507955421
131507955421
131507955421
131507955421
131507955421
131509822232
131507955421
131507955421
131507955421
131507955421
131507955421
131507955421
131507955421
131507955421
131507955421
131507955421
131507955421
131507955421
131507955421
131507955421
131507955421
131507955421
131507955421
1...

result:

ok 9000 numbers

Test #11:

score: 0
Accepted
time: 202ms
memory: 17268kb

input:

4
500000 3000
831 161289 161289 161289 161289 161289 161289 161289 161289 161289 161289 161289 161289 161289 161289 161289 161289 161289 161289 161289 161289 161289 161289 161289 128794 161289 161289 106109 161289 161289 161289 161289 161289 161289 161289 161289 161289 190991 161289 161289 161289 16...

output:

197826
197826
197826
197826
197826
197826
197826
197826
197826
197826
197826
197826
197826
197826
197826
197826
197826
197826
197826
197826
197826
197826
197826
197826
197826
197826
197826
197826
197826
197826
197826
197826
197826
197826
197826
197826
197826
197826
197826
197826
197826
197826
197826...

result:

ok 10000 numbers

Test #12:

score: 0
Accepted
time: 218ms
memory: 17392kb

input:

4
498000 3000
999999994 999999999 999999994 999999991 999999995 999999996 999999990 999999991 999999998 999999998 999999993 999999999 999999995 999999994 999999990 999999996 999999991 999999999 999999992 999999993 999999991 999999994 999999994 999999995 999999993 999999996 999999999 999999992 999999...

output:

165000000490
165000000794
165000000989
164999999136
165000001051
164999998817
165000001132
164999998874
164999998746
164999999349
165000000359
165000001251
165000000882
164999999400
164999999628
164999998782
165000001164
165000001353
164999998477
164999999056
165000001286
165000000562
164999998745
1...

result:

ok 10000 numbers