QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#603757 | #8524. Weather Forecast | UKBwyx | TL | 2935ms | 32264kb | C++20 | 1.6kb | 2024-10-01 18:52:58 | 2024-10-01 18:52:59 |
Judging History
answer
#include<bits/stdc++.h>
#pragma GCC optimize(2,3)
using namespace std;
long long n;
struct jd {
int v=0,l,r;
};
struct xds {
jd a[800005];
void csh1(int wz,int l1,int r1) {
a[wz].l=l1;
a[wz].r=r1;
a[wz].v=-1<<30;
if(l1==r1) {
return;
}
csh1(wz<<1,l1,(r1+l1)/2);
csh1(wz<<1|1,(r1+l1)/2+1,r1);
}
void csh() {
csh1(1,0,n);
}
void change(int wz,int wz1,int z) {
if(a[wz].l==a[wz].r) {
a[wz].v=max(z,a[wz].v);
return;
}
if(wz1>=a[wz<<1|1].l) {
change(wz<<1|1,wz1,z);
} else {
change(wz<<1,wz1,z);
}
a[wz].v=max(a[wz<<1|1].v,a[wz<<1].v);
}
int check(int wz,int l1,int r1) {
if(a[wz].l>=l1&&a[wz].r<=r1) {
return a[wz].v;
}
int t=-1<<30;
if(l1<a[wz<<1|1].l) {
t=max(t,check(wz<<1,l1,r1));
}
if(r1>a[wz<<1].r) {
t=max(t,check(wz<<1|1,l1,r1));
}
return t;
}
};
long long k,a[200005],u[200005];
double qz[200005],b[200005];
xds c;
bool check(double x) {
b[0]=0;
for(int i=1; i<=n; i++) {
qz[i]=qz[i-1]+(a[i]-x);
b[i]=qz[i];
}
sort(b,b+n+1);
map<double,int>m1;
for(int i=0; i<=n; i++) {
m1[b[i]]=i;
}
c.csh();
c.change(1,m1[0],0);
for(int i=1; i<=n; i++) {
int w=m1[qz[i]];
int v=c.check(1,0,w);
u[i]=++v;
c.change(1,w,v);
}
return u[n]>=k;
}
int main() {
ios::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
cin>>n>>k;
double ma=0;
long long mi=1e18;
for(int i=1; i<=n; i++) {
cin>>a[i];
ma+=a[i];
mi=min(mi,a[i]);
}
ma/=n;
double lim=0.00003,l=mi-lim,r=ma+lim,ans=0;
while(l+lim<=r) {
double mid=(l+r)*0.5;
if(check(mid)) {
l=mid;
ans=max(ans,mid);
} else {
r=mid;
}
}
printf("%.7f",ans);
return 0;
}//
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 16560kb
input:
7 3 1 3 1 2 2 2 1
output:
1.6666607
result:
ok found '1.66666', expected '1.66667', error '0.00001'
Test #2:
score: 0
Accepted
time: 4ms
memory: 16280kb
input:
1 1 1
output:
1.0000000
result:
ok found '1.00000', expected '1.00000', error '0.00000'
Test #3:
score: 0
Accepted
time: 0ms
memory: 16088kb
input:
2 1 2 1
output:
1.4999995
result:
ok found '1.50000', expected '1.50000', error '0.00000'
Test #4:
score: 0
Accepted
time: 2ms
memory: 18872kb
input:
3 2 2 4 4
output:
2.9999947
result:
ok found '2.99999', expected '3.00000', error '0.00001'
Test #5:
score: 0
Accepted
time: 0ms
memory: 15688kb
input:
4 2 6 7 3 12
output:
6.4999920
result:
ok found '6.49999', expected '6.50000', error '0.00001'
Test #6:
score: 0
Accepted
time: 0ms
memory: 15824kb
input:
5 3 17 23 13 12 21
output:
16.4999945
result:
ok found '16.49999', expected '16.50000', error '0.00001'
Test #7:
score: 0
Accepted
time: 0ms
memory: 15676kb
input:
7 4 3 37 46 23 46 6 31
output:
22.9999894
result:
ok found '22.99999', expected '23.00000', error '0.00001'
Test #8:
score: 0
Accepted
time: 0ms
memory: 19584kb
input:
10 5 30 91 36 53 74 91 37 1 76 3
output:
39.4999941
result:
ok found '39.49999', expected '39.50000', error '0.00001'
Test #9:
score: 0
Accepted
time: 0ms
memory: 16772kb
input:
100 50 593 336 577 842 505 78 665 825 990 895 952 782 721 242 421 951 786 994 238 154 356 483 686 143 220 473 920 353 738 690 96 915 913 157 412 882 465 585 963 635 68 72 901 143 50 558 310 504 987 97 588 987 841 829 780 497 758 909 503 585 91 657 912 870 663 606 748 492 175 92 375 768 773 206 676 8...
output:
482.9999881
result:
ok found '482.99999', expected '483.00000', error '0.00001'
Test #10:
score: 0
Accepted
time: 4ms
memory: 16068kb
input:
1000 500 74 796 330 98 801 45 160 90 432 788 873 109 714 307 407 94 360 136 198 912 744 902 549 398 478 590 663 983 956 267 201 332 610 249 698 268 700 755 902 485 327 539 203 397 721 971 951 378 674 159 269 182 473 993 84 832 808 908 73 608 842 411 465 886 348 153 924 871 729 1 279 949 475 71 982 3...
output:
394.9999702
result:
ok found '394.99997', expected '395.00000', error '0.00003'
Test #11:
score: 0
Accepted
time: 59ms
memory: 16288kb
input:
10000 5000 821 298 787 377 804 127 552 321 868 2 375 982 196 201 154 323 49 881 81 182 265 584 179 530 130 213 469 887 667 771 637 634 872 528 560 552 168 299 603 668 244 275 838 524 874 508 751 52 83 224 957 910 349 102 285 236 897 44 797 332 834 978 534 730 260 178 842 877 961 219 378 552 294 796 ...
output:
390.4999875
result:
ok found '390.49999', expected '390.50000', error '0.00001'
Test #12:
score: 0
Accepted
time: 2160ms
memory: 32264kb
input:
200000 100000 240 455 802 920 682 343 84 855 428 864 623 114 400 668 175 66 376 309 970 367 526 980 47 962 793 90 494 352 721 69 920 233 442 103 812 38 644 987 718 897 756 752 490 436 476 46 690 434 869 179 519 74 833 349 970 328 2 77 964 782 383 536 461 736 540 906 249 296 8 35 259 865 267 831 604 ...
output:
391.3333168
result:
ok found '391.33332', expected '391.33333', error '0.00002'
Test #13:
score: 0
Accepted
time: 118ms
memory: 32092kb
input:
199998 23727 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1...
output:
1.0000000
result:
ok found '1.00000', expected '1.00000', error '0.00000'
Test #14:
score: 0
Accepted
time: 1734ms
memory: 31848kb
input:
199997 155 1 2 1 2 2 2 1 1 2 2 1 1 2 2 2 1 1 1 2 2 2 1 1 1 2 2 2 2 1 1 2 1 1 2 2 1 1 1 1 1 2 1 2 2 2 1 2 2 2 2 2 2 2 2 2 1 1 1 2 1 1 2 1 2 1 2 1 2 2 1 1 2 1 1 1 2 1 2 2 2 1 1 2 2 1 1 1 1 2 2 1 2 1 1 2 2 2 2 1 2 2 1 1 1 1 1 2 2 1 1 2 2 1 1 1 2 2 1 1 1 2 1 2 1 1 2 2 2 1 2 2 2 1 1 2 1 2 2 1 2 2 1 2 1 1...
output:
1.5002761
result:
ok found '1.50028', expected '1.50029', error '0.00001'
Test #15:
score: 0
Accepted
time: 2130ms
memory: 32028kb
input:
199997 5668 4 1 1 4 4 5 3 5 4 2 3 2 4 3 3 4 2 2 2 3 4 1 1 5 1 4 5 3 3 2 2 2 5 4 1 1 5 5 3 1 4 2 2 5 4 4 5 1 4 1 4 1 4 1 4 2 1 4 4 2 1 3 5 4 4 4 1 2 1 4 5 2 5 1 1 1 5 4 5 2 5 5 5 1 2 5 1 2 3 3 2 2 1 5 1 5 1 3 5 4 3 1 2 2 4 3 2 1 4 3 3 3 2 4 2 3 1 5 5 5 4 4 3 3 3 4 2 3 5 2 3 4 5 5 1 1 4 1 2 2 4 5 2 4 ...
output:
2.9953420
result:
ok found '2.99534', expected '2.99534', error '0.00000'
Test #16:
score: 0
Accepted
time: 2546ms
memory: 32156kb
input:
199999 40 7 8 8 2 10 1 2 10 1 4 3 7 2 2 5 7 3 7 9 2 9 1 9 9 7 9 4 5 5 6 10 4 8 1 8 2 7 1 8 4 4 10 4 7 3 2 7 8 10 9 6 9 4 5 7 7 2 9 4 7 1 7 3 6 3 1 7 10 6 1 4 7 1 4 2 3 5 1 5 10 5 5 10 5 10 4 7 3 2 4 3 8 8 6 1 5 1 3 8 5 1 9 5 1 4 2 5 2 8 4 3 6 5 5 10 7 6 6 4 9 6 10 3 4 8 7 2 6 9 7 6 9 2 8 9 7 5 8 4 8...
output:
5.5015088
result:
ok found '5.50151', expected '5.50152', error '0.00001'
Test #17:
score: 0
Accepted
time: 2935ms
memory: 32092kb
input:
199998 5 99 76 31 60 81 98 31 57 91 45 28 40 66 41 69 53 67 13 28 96 48 52 67 26 50 33 51 72 71 35 67 79 41 33 74 43 58 43 38 24 3 71 16 16 66 62 15 24 95 99 53 59 13 96 18 38 75 96 84 99 43 40 72 46 8 34 66 68 96 79 14 10 41 60 61 26 48 14 34 16 40 68 71 24 5 30 89 26 25 80 18 48 58 35 59 76 59 76 ...
output:
50.4986278
result:
ok found '50.49863', expected '50.49864', error '0.00001'
Test #18:
score: -100
Time Limit Exceeded
input:
200000 3 772 660 48 48 244 440 394 172 177 335 139 778 502 336 571 880 552 539 797 111 428 654 720 549 679 510 503 426 290 358 2 358 649 811 327 237 829 767 867 111 122 223 725 141 310 69 682 694 529 315 743 23 335 485 272 426 321 449 370 202 779 345 165 826 117 371 785 115 709 333 816 379 682 479 9...