QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#197002 | #5150. Alternating Algorithm | RobeZH | WA | 1ms | 7728kb | C++14 | 2.9kb | 2023-10-02 07:17:18 | 2023-10-02 07:17:19 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
#define rep(i, a, b) for(int i = a; i < (b); ++i)
#define trav(a, x) for(auto& a : x)
#define all(x) begin(x), end(x)
#define sz(x) (int)(x).size()
#define subnb true
#define Lnb true
typedef long long ll;
typedef long double ld;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
typedef vector<int> vi;
const int N = (int)4e5 + 50;
const int INF = (int)1e9;
#define lson(x) 2*x+1
#define rson(x) 2*x+2
struct node {
ll mx, add;
void add_val(int x) {
add += x;
mx += x;
}
void merge(node &ls, node &rs) {
mx = max(ls.mx, rs.mx);
}
};
struct Tree {
node dat[N * 4];
void init(int n) {
fill(dat, dat + 4 * n, node{-INF, 0});
}
void push_down(int x, int l, int r) {
if(dat[x].add) {
if(l < r) {
dat[lson(x)].add_val(dat[x].add);
dat[rson(x)].add_val(dat[x].add);
}
dat[x].add = 0;
}
}
void update(int a, int b, int x, int l, int r, int d) {
int mid = (l + r) / 2;
if(r < a || l > b) return;
push_down(x, l, r);
if(l >= a && r <= b) {
dat[x].add_val(d);
return;
}
update(a, b, lson(x), l, mid, d);
update(a, b, rson(x), mid + 1, r, d);
dat[x].merge(dat[lson(x)], dat[rson(x)]);
}
void upd(int pos, int x, int l, int r, int val) {
if(l == r) {
dat[x] = {val, 0};
return;
}
push_down(x, l, r);
int mid = (l + r) / 2;
if(pos <= mid) upd(pos, lson(x), l, mid, val);
else upd(pos, rson(x), mid + 1, r, val);
dat[x].merge(dat[lson(x)], dat[rson(x)]);
}
// int query(int a, int b, int x, int l, int r) {
// int mid = (l + r) / 2;
// if(r < a || l > b) return -INF;
// push_down(x, l, r);
// if(l >= a && r <= b) return dat[x].mx;
// return max(query(a, b, lson(x), l, mid), query(a, b, rson(x), mid + 1, r));
// }
} tree;
int n;
int a[N];
vector<pii> ps;
int in[N];
int pf = 0;
int main() {
ios::sync_with_stdio(false);
cin.tie(NULL);
cin >> n;
n++;
rep(i, 0, n) cin >> a[i], ps.push_back({a[i], i});
sort(all(ps));
tree.init(n);
ll res = 0;
int c = 0;
for (auto p : ps) {
c++;
tree.update(0, p.second - 1, 0, 0, n - 1, 2);
tree.update(p.second, p.second, 0, 0, n - 1, p.second + (p.second % 2 == 0) + INF);
in[p.second] = 1;
while(pf < n && in[pf]) {
if(pf % 2 == 0) tree.upd(pf, 0, 0, n - 1, -INF);
pf++;
}
if(pf == c) {
continue;
}
// cout << pf << endl;
//
// cout << p.first << " " << tree.dat[0].mx - (c - 1) << endl;
res = max(res, tree.dat[0].mx - (c - 1));
}
cout << res << endl;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 1ms
memory: 7484kb
input:
3 8 13 4 10
output:
3
result:
ok single line: '3'
Test #2:
score: 0
Accepted
time: 1ms
memory: 5444kb
input:
5 13 12 14 10 14 12
output:
3
result:
ok single line: '3'
Test #3:
score: 0
Accepted
time: 0ms
memory: 7680kb
input:
2 2 2 1
output:
3
result:
ok single line: '3'
Test #4:
score: 0
Accepted
time: 1ms
memory: 5448kb
input:
1 300172042 474444146
output:
0
result:
ok single line: '0'
Test #5:
score: 0
Accepted
time: 0ms
memory: 7716kb
input:
1 636357447 557539481
output:
1
result:
ok single line: '1'
Test #6:
score: 0
Accepted
time: 1ms
memory: 5408kb
input:
2 139715426 368724097 417561009
output:
0
result:
ok single line: '0'
Test #7:
score: 0
Accepted
time: 1ms
memory: 5620kb
input:
2 77784868 542697475 509604021
output:
2
result:
ok single line: '2'
Test #8:
score: 0
Accepted
time: 1ms
memory: 5444kb
input:
2 698395658 71848686 699775597
output:
1
result:
ok single line: '1'
Test #9:
score: 0
Accepted
time: 0ms
memory: 5628kb
input:
2 487635147 571273621 442673389
output:
3
result:
ok single line: '3'
Test #10:
score: 0
Accepted
time: 1ms
memory: 5464kb
input:
2 502022170 254766224 258867503
output:
2
result:
ok single line: '2'
Test #11:
score: 0
Accepted
time: 1ms
memory: 7556kb
input:
2 783651505 271735448 154090385
output:
3
result:
ok single line: '3'
Test #12:
score: 0
Accepted
time: 0ms
memory: 5516kb
input:
3 423187900 701340783 708457090 788989478
output:
0
result:
ok single line: '0'
Test #13:
score: 0
Accepted
time: 0ms
memory: 7564kb
input:
3 172068101 507957913 237246316 805323765
output:
2
result:
ok single line: '2'
Test #14:
score: 0
Accepted
time: 1ms
memory: 7728kb
input:
3 309846480 218704879 536482379 754210806
output:
1
result:
ok single line: '1'
Test #15:
score: 0
Accepted
time: 1ms
memory: 5408kb
input:
3 150235215 485036833 52089968 645641645
output:
3
result:
ok single line: '3'
Test #16:
score: 0
Accepted
time: 1ms
memory: 7572kb
input:
3 735389981 669677621 733676260 858050940
output:
2
result:
ok single line: '2'
Test #17:
score: 0
Accepted
time: 1ms
memory: 5448kb
input:
3 635103474 551413670 85269704 730878535
output:
3
result:
ok single line: '3'
Test #18:
score: 0
Accepted
time: 0ms
memory: 5564kb
input:
3 287528440 314452762 846234936 452787633
output:
1
result:
ok single line: '1'
Test #19:
score: 0
Accepted
time: 0ms
memory: 7452kb
input:
3 276069955 969481471 992185356 536479156
output:
2
result:
ok single line: '2'
Test #20:
score: 0
Accepted
time: 1ms
memory: 7508kb
input:
3 225096493 88165689 415816372 360778803
output:
1
result:
ok single line: '1'
Test #21:
score: 0
Accepted
time: 0ms
memory: 7444kb
input:
3 651934487 760368054 975264908 206290402
output:
3
result:
ok single line: '3'
Test #22:
score: 0
Accepted
time: 1ms
memory: 5444kb
input:
3 668819975 16012633 798541220 258404088
output:
2
result:
ok single line: '2'
Test #23:
score: 0
Accepted
time: 1ms
memory: 7508kb
input:
3 303955151 276719749 324951113 63908344
output:
3
result:
ok single line: '3'
Test #24:
score: 0
Accepted
time: 0ms
memory: 7664kb
input:
3 419862649 709195111 424612582 548104611
output:
3
result:
ok single line: '3'
Test #25:
score: 0
Accepted
time: 1ms
memory: 5676kb
input:
3 46436854 762650424 543885894 63420906
output:
3
result:
ok single line: '3'
Test #26:
score: 0
Accepted
time: 1ms
memory: 5432kb
input:
3 663885616 817966829 428282021 750799481
output:
3
result:
ok single line: '3'
Test #27:
score: 0
Accepted
time: 0ms
memory: 5504kb
input:
3 453815838 784866392 626401113 33629018
output:
3
result:
ok single line: '3'
Test #28:
score: 0
Accepted
time: 0ms
memory: 5516kb
input:
3 612031283 905623341 296446821 317142883
output:
4
result:
ok single line: '4'
Test #29:
score: 0
Accepted
time: 1ms
memory: 5460kb
input:
3 690093550 720639503 493410469 329723725
output:
4
result:
ok single line: '4'
Test #30:
score: 0
Accepted
time: 1ms
memory: 7488kb
input:
3 640270086 11003869 302770972 380428351
output:
3
result:
ok single line: '3'
Test #31:
score: 0
Accepted
time: 0ms
memory: 7488kb
input:
3 813904638 53916473 202342438 178710524
output:
3
result:
ok single line: '3'
Test #32:
score: 0
Accepted
time: 1ms
memory: 7508kb
input:
3 858480562 107901831 70069694 624943715
output:
3
result:
ok single line: '3'
Test #33:
score: 0
Accepted
time: 0ms
memory: 5472kb
input:
3 972814426 208602080 487914166 199127689
output:
3
result:
ok single line: '3'
Test #34:
score: 0
Accepted
time: 0ms
memory: 7480kb
input:
3 527326624 369552716 30514207 190802344
output:
4
result:
ok single line: '4'
Test #35:
score: 0
Accepted
time: 1ms
memory: 5468kb
input:
3 885560774 510753464 330831417 122397162
output:
4
result:
ok single line: '4'
Test #36:
score: 0
Accepted
time: 1ms
memory: 5412kb
input:
1 0 0
output:
0
result:
ok single line: '0'
Test #37:
score: 0
Accepted
time: 0ms
memory: 7488kb
input:
1 1 0
output:
1
result:
ok single line: '1'
Test #38:
score: 0
Accepted
time: 1ms
memory: 5636kb
input:
1 0 1
output:
0
result:
ok single line: '0'
Test #39:
score: 0
Accepted
time: 1ms
memory: 5516kb
input:
1 1000000000 0
output:
1
result:
ok single line: '1'
Test #40:
score: 0
Accepted
time: 1ms
memory: 7716kb
input:
5 870923667 831419329 551216223 626357192 564992248 642950852
output:
6
result:
ok single line: '6'
Test #41:
score: 0
Accepted
time: 0ms
memory: 7544kb
input:
5 436264160 745635157 20618089 707614372 862629566 987729003
output:
3
result:
ok single line: '3'
Test #42:
score: 0
Accepted
time: 1ms
memory: 5628kb
input:
5 112182501 364650582 622093010 819594012 467586768 328068426
output:
4
result:
ok single line: '4'
Test #43:
score: 0
Accepted
time: 1ms
memory: 7556kb
input:
6 440802446 672072796 870079224 289645602 358794408 131990964 936527350
output:
5
result:
ok single line: '5'
Test #44:
score: 0
Accepted
time: 1ms
memory: 7684kb
input:
6 624312076 675425489 51650975 686013685 309942426 127494361 289215201
output:
6
result:
ok single line: '6'
Test #45:
score: 0
Accepted
time: 0ms
memory: 7564kb
input:
7 406067722 563548194 1821761 121198244 605039142 435891339 752521249 231257069
output:
5
result:
ok single line: '5'
Test #46:
score: 0
Accepted
time: 1ms
memory: 5688kb
input:
8 903342821 163731172 682809514 389316549 725357000 720997713 96340788 793801888 869342849
output:
8
result:
ok single line: '8'
Test #47:
score: 0
Accepted
time: 1ms
memory: 7608kb
input:
9 363831817 704177455 355821226 562295495 935390976 836136856 341398270 776676829 529678510 52558572
output:
9
result:
ok single line: '9'
Test #48:
score: 0
Accepted
time: 1ms
memory: 5512kb
input:
10 246145909 225986170 30947233 986106325 383647644 975836729 294340164 499272928 869685867 565345319 614315474
output:
8
result:
ok single line: '8'
Test #49:
score: -100
Wrong Answer
time: 0ms
memory: 5528kb
input:
1000 231332114 230630192 351420646 113555257 459531950 528889159 722843423 767109901 199940885 361818296 601674519 520787125 373984526 131582326 735571682 913614536 427646918 492788875 885493950 729293776 86866411 301642177 596103707 286017188 404978221 99164884 557969075 824451476 786229179 6568911...
output:
998
result:
wrong answer 1st lines differ - expected: '988', found: '998'