QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#361166 | #8229. 栈 | zhjxaoini | 24 | 278ms | 15996kb | C++14 | 4.8kb | 2024-03-22 21:07:07 | 2024-03-22 21:07:08 |
Judging History
answer
#ifndef LOCAL_RUN
#define NDEBUG
#endif
#ifdef GNU_DEBUG
#define _GLIBCXX_DEBUG 1
#define _GLIBCXX_DEBUG_PEDANTIC 1
#define _GLIBCXX_SANITIZE_VECTOR 1
#endif
#include <bits/stdc++.h>
namespace {
#define mset(a, b) memset(&a, b, sizeof(a))
#define ALL(v) std::begin(v), std::end(v)
#define RANGE(a, l, r) (std::begin(a) + (l)), (std::begin(a) + ((r) + 1))
#define fir(i, a, b, ...) for (int i = (a), ##__VA_ARGS__; i <= (b); ++i)
#define firr(i, a, b, ...) for (int i = (a), ##__VA_ARGS__; i >= (b); --i)
#ifdef LOCAL_RUN
template<class T> void dbgpr(const T& x) {std::cerr << x << std::endl;}
template<class T, class... Args> void dbgpr(const T& x, const Args&... args) {std::cerr << x << ", ", dbgpr(args...);}
template<class... Args> void dbgprint(const char* s, const Args&... args) {std::cerr << s << " = ", dbgpr(args...);}
#define debug(...) dbgprint(#__VA_ARGS__, __VA_ARGS__)
#define DEBUG if (true)
#else
#define debug(...) void()
#define DEBUG if (false)
#endif
typedef long long LL;
typedef long double LD;
typedef unsigned long long ULL;
template<class T> void rei(T& x) {
bool f = false; int ch; x = 0;
while (!isdigit(ch = getchar())) f = ch == '-';
do x = x * 10 + (ch & 15); while (isdigit(ch = getchar()));
if (f) x = -x;
}
template<class T1, class T2> bool cmax(T1& a, const T2& b) {return a < b ? a = b, true : false;}
template<class T1, class T2> bool cmin(T1& a, const T2& b) {return b < a ? a = b, true : false;}
using namespace std;
const int MAXN = 1e5 + 5;
const int SQTN = 1005;
int anstot, chgtot; const int B = 320;
struct Chg {int x, y; LL w;};
array<Chg, MAXN> chg;
int getid(int x) {return (x - 1) / B + 1;}
int getL(int p) {return (p - 1) * B + 1;}
int getR(int p) {return min(p * B, chgtot);}
array<LL, SQTN> del;
struct Node {int x, y; LL precnt, presum;};
array<vector<Node>, SQTN> stk;
array<LL, SQTN> siz;
void rebuild(int p) {
int L = getL(p), R = getR(p);
del[p] = 0, stk[p].clear();
firr (i, R, L) {
auto& c = chg[i];
if (c.x) {
if (c.x <= del[p]) del[p] -= c.x;
else stk[p].push_back({int(c.x - del[p]), c.y, 0, 0}), del[p] = 0;
} else {
del[p] += c.w;
}
}
reverse(ALL(stk[p]));
LL cnt = 0, sum = 0;
for (auto& it : stk[p]) {
it.precnt = cnt += it.x;
it.presum = sum += (LL)it.x * it.y;
}
fir (i, p, getid(chgtot)) {
siz[i] = max(0LL, siz[i - 1] - del[i]);
if (stk[p].size()) siz[i] += stk[p].back().precnt;
}
}
LL query(int R, LL len) {
static array<LL, MAXN> ss;
int p = getid(R), fl = getL(p);
ss[fl - 1] = siz[p - 1];
fir (i, fl, R) {
auto& c = chg[i];
ss[i] = ss[i - 1];
if (c.x) ss[i] += c.x;
else ss[i] = max(0LL, ss[i] - c.w);
}
LL ban = 0, ans = 0;
firr (i, R, getL(p)) {
auto& c = chg[i];
if (c.x) {
if (c.x <= ban) ban -= c.x;
else {
LL pre = ss[i - 1];
int cur = int(c.x - ban); ban = 0;
if (pre <= len) {
ans += min(len - pre, (LL)cur) * c.y;
}
}
} else {
ban += c.w;
}
}
firr (i, p - 1, 1) {
if (stk[i].size()) {
if (stk[i].back().precnt <= ban) ban -= stk[i].back().precnt;
else {
LL pre = siz[i] - stk[i].back().precnt;
if (pre <= len) {
LL need = min(len - pre, stk[i].back().precnt - ban); assert(need >= 0);
auto it = partition_point(ALL(stk[i]), [need](const Node& nd) {return nd.precnt <= need;});
if (it != stk[i].begin()) ans += (it - 1)->presum, need -= (it - 1)->precnt, assert(need >= 0);
if (it != stk[i].end()) ans += min(need, (LL)it->x) * it->y;
}
ban = 0;
}
}
ban += del[i];
}
return ans;
}
struct Qry {int tim, op, x, y; LL w;};
array<vector<Qry>, MAXN> qry;
array<LL, MAXN> ans;
void solve(const Qry& q) {
if (q.op < 0) {
chg[q.tim] = {};
rebuild(getid(q.tim));
return;
}
if (q.op == 1) {
chg[q.tim] = {q.x, q.y, 0};
rebuild(getid(q.tim));
return;
}
if (q.op == 2) {
chg[q.tim] = {0, 0, q.w};
rebuild(getid(q.tim));
return;
}
LL res = query(q.tim, q.w);
ans[q.x] += q.y * res;
}
void realmain() {
DEBUG freopen("data.in", "r", stdin);
int n, qwe; rei(n), rei(qwe);
fir (i, 1, qwe) {
int op; rei(op);
if (op == 1) {
chgtot++;
int L, R, x, y; rei(L), rei(R), rei(x), rei(y);
qry[L].push_back({chgtot, op, x, y, 0});
qry[R + 1].push_back({chgtot, -op, 0, 0, 0});
} else if (op == 2) {
chgtot++;
int L, R; LL w; rei(L), rei(R), rei(w);
qry[L].push_back({chgtot, op, 0, 0, w});
qry[R + 1].push_back({chgtot, -op, 0, 0, 0});
} else {
anstot++;
int k; LL p, q; rei(k), rei(p), rei(q);
qry[k].push_back({chgtot, op, anstot, 1, q});
if (p > 1) qry[k].push_back({chgtot, op, anstot, -1, p - 1});
}
}
fir (cur, 1, n) {
for (auto& it : qry[cur]) {
solve(it);
}
}
fir (i, 1, anstot) printf("%lld\n", ans[i]);
}}
signed main(){return realmain(),0;}
Details
Tip: Click on the bar to expand more detailed information
Subtask #1:
score: 0
Wrong Answer
Test #1:
score: 0
Wrong Answer
time: 6ms
memory: 8308kb
input:
4907 4910 2 763 3330 1 3 307 1 1 1 2262 3430 22699 89397 1 1915 4000 51541 67587 2 212 2990 9763 2 1086 2162 1 2 1813 4496 16760 1 51 2796 68005 99390 1 1267 1519 74236 66178 3 1768 23808 54314 2 900 4122 27758 3 3287 17350 28989 2 3277 4024 3633 2 444 4866 1 2 353 4219 1061 1 987 3141 99906 17320 2...
output:
0 3032090730 903396180 471569175 200648623 98486697 647114751 123945 50793012 61782451 0 0 0 762429740 321140700 871619914 536311874 5361094892 0 1792521566 6640518748 2415375780 249435711 225987900 5250788038 1145132507 140071334 0 118545795 3086405469 5646099271 84280112 1232466642 4992966775 7968...
result:
wrong answer 330th numbers differ - expected: '2016523984', found: '0'
Subtask #2:
score: 0
Wrong Answer
Test #6:
score: 0
Wrong Answer
time: 278ms
memory: 15996kb
input:
99999 99998 1 5026 18575 27178 90423 3 30623 1 1 3 76936 1 1 1 77021 95683 84664 24734 1 46085 74886 40512 11266 3 5048 8594 22468 1 53318 77721 97151 70784 1 70645 91192 37556 13013 1 56752 56940 91812 62887 1 7928 34576 87339 69404 3 74875 32807 100970 3 22338 17221 25771 3 21421 20602 57957 3 717...
output:
0 0 1254619125 4366274868 593473604 2592655824 3657975552 5652513833 110091352 1226646296 1989326852 763582808 8205318671 1659086055 3012598941 20085582585 3242801176 17381308704 24555397019 4722824224 20308857160 899316516 38935050954 988382364 13341823621 11397759491 2449683584 5875277101 80572355...
result:
wrong answer 669th numbers differ - expected: '107779313253', found: '120008978995'
Subtask #3:
score: 0
Wrong Answer
Test #12:
score: 0
Wrong Answer
time: 157ms
memory: 15444kb
input:
100000 99993 1 47773 70467 16065 1 2 52349 78446 2304 3 40821 1 1 1 40216 93069 78144 1 1 41089 43671 76025 1 2 35263 68629 31066 3 79881 13534 57327 3 5556 1 1 2 21962 38192 1 1 664 58116 9417 1 3 28089 6039 7989 2 88500 90302 9946 3 63215 49410 60770 2 11069 89527 57581 2 70303 97603 12363 1 3420 ...
output:
0 43794 0 1951 11361 129 898 29245 7969 1947 34972 16405 59952 123666 24537 68209 34537 0 32225 37527 0 31810 16824 96178 14285 300941 57614 1602 129470 61935 4068 114182 17609 152949 26099 179359 250368 4796 183349 125791 17414 61871 42058 0 2698 183297 23029 54464 0 26259 204595 35604 0 0 18437 29...
result:
wrong answer 331st numbers differ - expected: '88127', found: '0'
Subtask #4:
score: 24
Accepted
Test #17:
score: 24
Accepted
time: 149ms
memory: 13692kb
input:
99999 99996 3 77889 1 10000000000 1 6316 86327 89644 386 3 9260 1 10000000000 2 2603 47234 69717 2 20260 73011 19290 2 62477 81233 26127 1 50140 68508 37004 98794 2 14449 22788 16063 1 43860 84932 50375 21777 1 67345 94584 28202 66610 2 661 68654 1 1 14411 94422 82738 61196 1 16563 94416 4920 38408 ...
output:
0 34602584 0 0 27739639583 1363823412 0 1902514434 1902514434 2147553884 1902514434 15794375094 0 4192446657 15797478185 13141921145 0 6351944090 5775183021 363222594 1995572111 2193350882 0 6843261316 5508935691 250667843 0 14181223499 7734049978 21958753162 12852564544 4496343819 15011219087 11331...
result:
ok 33196 numbers
Test #18:
score: 0
Accepted
time: 147ms
memory: 14444kb
input:
99993 100000 3 61460 1 10000000000 1 24890 92871 3803 26680 1 13860 37123 61687 5252 1 8370 24754 70468 14033 3 89253 1 10000000000 3 19857 1 10000000000 1 46250 80211 68621 64496 2 51133 69614 60852 1 6552 42728 61410 66775 3 16111 1 10000000000 3 48406 1 10000000000 2 46319 62460 3834 3 11455 1 10...
output:
0 101464040 1312857568 5413510318 4527244056 5089530194 4526096914 0 4475006240 7393292878 6354306906 5962661320 1073478334 14785061024 124598326 5273378126 3143834350 5315386486 567431731 3354264361 0 8452414800 16197376342 15594421332 7644906667 10259594309 15786872317 21575834611 25614641754 0 56...
result:
ok 33334 numbers
Test #19:
score: 0
Accepted
time: 151ms
memory: 14608kb
input:
99998 99996 3 40534 1 10000000000 1 89230 99016 8691 49307 1 73075 80610 27269 1760 1 80632 96125 13027 41376 1 55057 71990 82693 44377 2 11566 27301 1 2 23704 47061 1 1 67323 97867 14275 31136 1 11736 72566 78826 36301 3 70013 1 10000000000 1 23701 76122 6240 56626 2 71627 75885 1100 3 852 1 100000...
output:
0 6975596287 0 0 2144844585 6718561947 6718561947 2158130751 2917409114 3686398232 3317159253 1336852308 8373494196 2102154609 2709470190 1740124736 7659185913 1508488055 4242893725 8408091078 11875396012 18171183033 0 14595335642 18243076995 18521970659 18538979218 18538979218 20876408549 136521304...
result:
ok 33368 numbers
Test #20:
score: 0
Accepted
time: 154ms
memory: 13776kb
input:
99995 99996 3 45022 1 10000000000 2 3423 75909 1 1 54871 80611 9913 46243 2 12223 64484 1 1 12991 92385 39637 71608 3 20817 1 10000000000 3 14810 1 10000000000 3 85611 1 10000000000 3 34957 1 10000000000 3 22540 1 10000000000 2 11680 85376 4565 2 37283 97824 2191 3 84953 1 10000000000 3 56562 1 1000...
output:
0 2838326296 2838326296 2838326296 2838326296 2838326296 2354542648 2812903264 2631018944 2518569019 2681433168 2439582449 0 2681433168 2596475577 2439582449 0 7076261394 4449272647 15245942497 17667326760 15245942497 17667326760 17015058013 16860972874 42913399354 6034264601 96968820 12777724000 15...
result:
ok 33362 numbers
Test #21:
score: 0
Accepted
time: 226ms
memory: 15720kb
input:
99997 99996 3 68591 1 10000000000 2 11039 97222 1 1 34581 58556 66216 49214 1 42922 79247 32694 462 2 53032 58124 10301 3 34753 1 10000000000 1 22670 52566 70087 14019 3 55338 1 10000000000 3 30269 1 10000000000 1 4720 84384 20451 10356 3 11823 1 10000000000 1 37895 41892 96036 45498 2 19158 57043 7...
output:
0 3258754224 3269099790 982549653 211790556 1278106321 13591686831 9174283336 13929158983 10709860696 11476736634 24202776273 22066287959 23834159039 19695058244 28492871831 46736921586 859941225 5996946536 32463961710 31748786358 726580728 43724564767 39567498070 43724564767 57942980296 41944974287...
result:
ok 16689 numbers
Subtask #5:
score: 0
Skipped
Dependency #1:
0%