QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#672072 | #7904. Rainbow Subarray | Calculatelove# | TL | 1897ms | 372204kb | C++14 | 2.8kb | 2024-10-24 15:31:53 | 2024-10-24 15:31:53 |
Judging History
answer
#include <bits/stdc++.h>
typedef long long s64;
const int N = 500100;
const int SIZE = 1e9;
int n; s64 k;
int a[N];
namespace SGT {
const int pond = 20001000;
int nClock, root[N];
struct node {
int lc, rc;
int cnt;
s64 sum;
} t[pond];
void insert(int &p, int q, int l, int r, int x) {
p = ++ nClock;
t[p] = t[q];
t[p].cnt ++, t[p].sum += x;
if (l == r) return;
int mid = (l + r) >> 1;
if (x <= mid)
insert(t[p].lc, t[q].lc, l, mid, x);
else
insert(t[p].rc, t[q].rc, mid + 1, r, x);
}
int ask_cnt(int p, int q, int l, int r, int s, int e) {
if (s <= l && r <= e) return t[q].cnt - t[p].cnt;
int mid = (l + r) >> 1;
int cnt = 0;
if (s <= mid)
cnt += ask_cnt(t[p].lc, t[q].lc, l, mid, s, e);
if (mid < e)
cnt += ask_cnt(t[p].rc, t[q].rc, mid + 1, r, s, e);
return cnt;
}
s64 ask_sum(int p, int q, int l, int r, int s, int e) {
if (s <= l && r <= e) return t[q].sum - t[p].sum;
int mid = (l + r) >> 1;
s64 sum = 0;
if (s <= mid)
sum += ask_sum(t[p].lc, t[q].lc, l, mid, s, e);
if (mid < e)
sum += ask_sum(t[p].rc, t[q].rc, mid + 1, r, s, e);
return sum;
}
int ask_kth(int p, int q, int l, int r, int k) {
if (l == r) return l;
int mid = (l + r) >> 1;
int lcnt = t[t[q].lc].cnt - t[t[p].lc].cnt;
if (k <= lcnt)
return ask_kth(t[p].lc, t[q].lc, l, mid, k);
else
return ask_kth(t[p].rc, t[q].rc, mid + 1, r, k - lcnt);
}
}
using namespace SGT;
bool check(int mid) {
for (int i = 1; i + mid - 1 <= n; i ++) {
int p = ask_kth(root[i - 1], root[i + mid - 1], -n, SIZE, (mid + 1) / 2);
int lcnt = ask_cnt(root[i - 1], root[i + mid - 1], -n, SIZE, -n, p);
s64 lsum = ask_sum(root[i - 1], root[i + mid - 1], -n, SIZE, -n, p);
int rcnt = (t[root[i + mid - 1]].cnt - t[root[i - 1]].cnt) - lcnt;
s64 rsum = (t[root[i + mid - 1]].sum - t[root[i - 1]].sum) - lsum;
s64 cost = (rsum - 1ll * rcnt * p) + (1ll * lcnt * p - lsum);
if (cost <= k) return 1;
}
return 0;
}
void work() {
scanf("%d%lld", &n, &k);
for (int i = 1; i <= n; i ++)
scanf("%d", &a[i]), a[i] -= i;
SGT::nClock = 0;
for (int i = 1; i <= n; i ++)
SGT::insert(SGT::root[i], SGT::root[i - 1], -n, SIZE, a[i]);
int l = 1, r = n;
while (l < r) {
int mid = (l + r + 1) >> 1;
if (check(mid)) l = mid; else r = mid - 1;
}
printf("%d\n", l);
}
int main() {
int T;
scanf("%d", &T);
while (T --)
work();
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 1ms
memory: 6004kb
input:
5 7 5 7 2 5 5 4 11 7 6 0 100 3 4 5 99 100 5 6 1 1 1 1 1 5 50 100 200 300 400 500 1 100 3
output:
4 3 5 1 1
result:
ok 5 lines
Test #2:
score: 0
Accepted
time: 950ms
memory: 79580kb
input:
11102 2 167959139 336470888 134074578 5 642802746 273386884 79721198 396628655 3722503 471207868 6 202647942 268792718 46761498 443917727 16843338 125908043 191952768 2 717268783 150414369 193319712 6 519096230 356168102 262263554 174936674 407246545 274667941 279198849 9 527268921 421436316 3613460...
output:
1 4 3 2 6 5 7 2 4 1 4 1 1 3 2 2 7 8 7 7 1 7 6 2 4 3 1 6 7 7 3 4 3 9 3 8 6 6 3 1 6 3 1 2 4 6 4 6 4 1 4 7 1 6 3 5 6 6 1 7 5 3 1 6 4 5 3 2 2 6 2 3 10 1 4 3 2 4 5 1 7 5 5 5 8 5 3 6 3 5 5 8 5 4 5 2 1 5 2 3 3 4 8 1 3 1 2 2 8 3 1 6 8 1 8 4 5 6 6 8 4 8 3 2 8 4 5 6 2 6 2 4 1 5 4 5 3 2 4 1 2 1 4 5 8 3 7 3 3 3...
result:
ok 11102 lines
Test #3:
score: 0
Accepted
time: 1664ms
memory: 372204kb
input:
1 500000 17244641009859 54748096 75475634 204928248 276927808 84875072 103158867 27937890 322595515 186026685 45468307 69240390 139887597 188586447 373764525 121365644 310156469 185188306 60350786 211308832 384695957 370562147 208427221 35937909 267590963 126478310 275357775 55361535 335993561 36696...
output:
172998
result:
ok single line: '172998'
Test #4:
score: 0
Accepted
time: 1897ms
memory: 371368kb
input:
1 500000 43483524125987 923264237 374288891 535590429 751244358 124321145 232930851 266089174 543529670 773363571 319728747 580543238 582720391 468188689 490702144 598813561 138628383 284660056 733781508 155605777 931759705 245485733 723534730 257812292 794937524 596788519 188451996 981010588 144836...
output:
174260
result:
ok single line: '174260'
Test #5:
score: 0
Accepted
time: 93ms
memory: 370412kb
input:
1 499999 62499749999 496813081 496813081 496813081 496813081 496813081 496813081 496813081 496813081 496813081 496813081 496813081 496813081 496813081 496813081 496813081 496813081 496813081 496813081 496813081 496813081 496813081 496813081 496813081 496813081 496813081 496813081 496813081 496813081...
output:
499998
result:
ok single line: '499998'
Extra Test:
score: -3
Extra Test Failed : Time Limit Exceeded on 2
input:
1 500000 10000000000000 1 500000000 2000 500001999 3999 500003998 5998 500005997 7997 500007996 9996 500009995 11995 500011994 13994 500013993 15993 500015992 17992 500017991 19991 500019990 21990 500021989 23989 500023988 25988 500025987 27987 500027986 29986 500029985 31985 500031984 33984 5000339...