QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#652713 | #8242. V-Diagram | 111111qqqqqq | AC ✓ | 204ms | 6264kb | C++23 | 1.4kb | 2024-10-18 19:02:34 | 2024-10-18 19:02:38 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
#define cmin(a,b) a=min(a,b)
#define cmax(a,b) a=max(a,b)
#define modd(a,b) a=a%b
#define pb push_back
#define db double
#define lowbit(x) x&(-x)
#define cerr(x) cout<<#x<<"="<<x<<endl
#define fi first
#define se second
const ll mod=1e9+7;
#define N 300010
const db eps=1e-9;
int n,pos;
db a[N],pre[N],sum=0;
ll ksm(ll a,ll b) {ll ans=1,bs=a;while(b) {if(b&1) ans=ans*bs%mod;bs=bs*bs%mod;b>>=1;}return ans;}
bool ck(db mid) {
db s=sum-mid*n;
if(s>=0) return 1;
s=0;
for(int i=1;i<=pos+1;i++) s+=a[i]-mid;
if(s>=0) return 1;
s=0;
for(int i=pos-1;i<=n;i++) s+=a[i]-mid;
return s>=0;
}//平均值最大>=mid,左边的可以拼上右边的
//只有3种情况,[1,n],[1,i+1],[i-1,n],如果最小值在i位置的话
void solve() {
cin>>n;
for(int i=1;i<=n;i++) cin>>a[i];
sum=accumulate(a+1,a+n+1,0ll);
for(int i=2;i<n;i++) if(a[i]<a[i-1] && a[i]<a[i+1]) {pos=i;break;}
db l=0,r=*max_element(a+1,a+n+1),mid;
int cnt=0;
while(++cnt<=100) {
mid=(l+r)/2;
if(ck(mid)) l=mid;
else r=mid;
}
cout<<fixed<<setprecision(12)<<l<<endl;
}
int main() {
ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);
int T;
cin>>T;
while(T--)
solve();
return 0;
}
这程序好像有点Bug,我给组数据试试?
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 1ms
memory: 5828kb
input:
2 4 8 2 7 10 6 9 6 5 3 4 8
output:
6.750000000000 5.833333333333
result:
ok 2 numbers
Test #2:
score: 0
Accepted
time: 204ms
memory: 5824kb
input:
100000 3 948511478 739365502 813471668 3 881046825 27458122 398507422 3 987554257 399092415 924260278 3 984128569 125199021 716360525 3 529589236 45783262 313507287 3 645443456 85994112 226010681 3 914820717 228360911 572267310 3 418958362 56703604 195276041 3 64461646 26764720 26995581 3 914535039 ...
output:
833782882.666666746140 435670789.666666686535 770302316.666666746140 608562705.000000000000 296293261.666666686535 319149416.333333313465 571816312.666666626930 223646002.333333343267 39407315.666666664183 383253737.666666686535 734363638.666666746140 779975824.333333373070 490276408.333333373070 57...
result:
ok 100000 numbers
Test #3:
score: 0
Accepted
time: 68ms
memory: 5952kb
input:
10000 4 194123849 79274911 191162487 570110764 86 957917218 915359202 914726017 873273226 867724859 867674150 809652204 805531383 745262007 743835491 727071232 714782071 645394643 639432679 594879540 587173904 583418126 560538589 518721836 469558994 427721766 411582333 404948350 402948978 357228675 ...
output:
258668002.750000000000 527118856.755555570126 495489050.352941155434 525232841.150000095367 472025965.700000047684 546154003.125000000000 543366581.516129016876 254833443.200000017881 428466450.049999892712 502458665.384615421295 564217787.333333373070 479468115.118279576302 466246020.204545497894 5...
result:
ok 10000 numbers
Test #4:
score: 0
Accepted
time: 64ms
memory: 5856kb
input:
1000 357 999039850 998470288 997001139 994662646 991895879 986310400 986201443 971759917 969292691 967648767 963962459 963603069 959189978 954532156 936459732 927268934 925199105 918559276 906725073 903024522 891346023 886340039 872105565 871168803 867996002 862017068 851751458 849013653 847967471 8...
output:
493655540.627451002598 515292672.416666507721 498032099.981481254101 481127839.625000000000 526924843.336283624172 488725771.457191824913 533287305.946428596973 438471966.333333373070 536630212.257575809956 560617979.739725947380 489475479.028171539307 484316845.366197049618 535619161.371428549290 5...
result:
ok 1000 numbers
Test #5:
score: 0
Accepted
time: 66ms
memory: 5908kb
input:
100 1152 999672457 998726401 995956848 990786177 990411263 984766135 983346495 982593760 982250360 980153123 975942408 974567443 973232196 970303426 967381747 966555245 966400114 965308448 961378668 960953166 960451796 957742285 957273419 956986267 956737190 956352393 954265694 953272327 952096100 9...
output:
504372755.029159486294 495156421.177474915981 511090599.621761262417 497554816.124317169189 514036973.345573365688 509664056.912052154541 500937804.963664948940 515638734.543235719204 500934821.109588563442 518390767.739204406738 504669526.958175599575 501996849.059283196926 504619908.646976470947 5...
result:
ok 100 numbers
Test #6:
score: 0
Accepted
time: 62ms
memory: 5828kb
input:
10 29043 999960631 999958134 999901247 999737433 999520614 999519045 999460207 999379140 999279078 999214335 999048733 998866618 998693991 998649435 998636721 998575997 998542938 998513617 998477418 998422985 998403836 998262102 998124856 998017139 998013085 997959891 997944356 997893923 997524695 9...
output:
497704976.046508789062 500149119.648895204067 499456770.182983338833 500288732.702417850494 505548409.832382142544 502546060.651794373989 500560614.163208007812 502706676.399536132812 500677023.496215820312 505195094.970296800137
result:
ok 10 numbers
Test #7:
score: 0
Accepted
time: 66ms
memory: 6264kb
input:
1 300000 999995409 999991717 999988340 999981078 999978323 999978096 999977575 999967796 999958049 999950023 999927083 999923421 999918905 999916153 999912740 999911175 999907902 999902376 999899096 999889548 999888902 999880881 999878324 999867494 999866296 999864006 999863565 999859765 999841183 9...
output:
499603654.397460877895
result:
ok found '499603654.397460878', expected '499603654.397238612', error '0.000000000'
Extra Test:
score: 0
Extra Test Passed