QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#114665 | #5973. Kiddie Pool | zwh2008 | 0 | 0ms | 3872kb | C++14 | 1014b | 2023-06-22 19:35:26 | 2023-06-22 19:35:26 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
const int N=105;
int n,Case;
long double V,T;
struct node{long double r,t;}a[N];
bool chk(long double x) {
long double nv=0,mnt=0,mxt=0;
for(int i=1;i<=n;i++) {
long double s=a[i].r*x;
if(nv+s>V){mnt+=(V-nv)*a[i].t,nv=V;break;}
else mnt+=s*a[i].t,nv+=s;
}
if(nv<V)return 0;
mnt/=V,nv=0;
for(int i=n;i;i--) {
long double s=a[i].r*x;
if(nv+s>V){mxt+=(V-nv)*a[i].t,nv=V;break;}
else mxt+=s*a[i].t,nv+=s;
}mxt/=V;
return mnt<=T&&mxt>=T;
}
void solve() {
scanf("%d%Lf%Lf",&n,&V,&T);
for(int i=1;i<=n;i++)scanf("%Lf%Lf",&a[i].r,&a[i].t);
long double l=0,r=1e8,mid,ans=-1;sort(a+1,a+n+1,[](const node&x,const node&y){return x.t<y.t;});
for(int i=1;i<=200;i++)mid=(l+r)/2,chk(mid)?r=mid,ans=mid:l=mid;
if(Case==11)cout<<chk(0.473853737000)<<endl;
if(ans<0)printf("Case #%d: IMPOSSIBLE\n",++Case);
else printf("Case #%d: %.8Lf\n",++Case,ans);
}
int main() {
int tt;scanf("%d",&tt);
while(tt--)solve();
return 0;
}
詳細信息
Subtask #1:
score: 0
Wrong Answer
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 3856kb
input:
100 2 77.4956 5.3818 0.0004 3.7300 99.9993 5.3818 2 99.9998 49.4406 98.1477 49.4406 99.9997 41.1985 2 99.9990 85.5865 99.9992 66.1663 99.9993 85.5865 2 99.9994 2.2480 99.9994 2.2448 99.9998 51.8149 2 0.0010 91.4534 0.0009 84.1767 99.9991 91.4534 2 0.0009 74.8941 99.9999 65.1204 99.9993 84.6678 2 99....
output:
Case #1: 0.77496142 Case #2: 1.01887054 Case #3: 0.99999700 Case #4: 0.99993544 Case #5: 0.00001000 Case #6: 0.00000450 Case #7: 0.99999900 Case #8: 1.00000000 Case #9: 0.50759777 Case #10: 2.00000000 Case #11: 999999.99999995 0 Case #12: 0.60881598 Case #13: IMPOSSIBLE Case #14: 0.00000698 Case #15...
result:
wrong output format Expected 'Case' but found '0' (test case 12)
Subtask #2:
score: 0
Wrong Answer
Test #2:
score: 0
Wrong Answer
time: 0ms
memory: 3872kb
input:
100 58 0.0008 99.1595 0.0005 30.5091 0.0008 44.0520 0.0004 40.6945 0.0008 80.0392 0.0003 26.9373 0.0004 25.5406 0.0010 27.1416 0.0011 39.1921 0.0007 9.8981 0.0001 91.7185 0.0010 39.2460 0.0005 96.9054 0.0002 20.9389 0.0011 92.2262 0.0003 64.4162 0.0005 70.7304 0.0007 77.0529 0.0002 64.2427 0.0009 95...
output:
Case #1: 0.31258754 Case #2: IMPOSSIBLE Case #3: 1.00000000 Case #4: 0.07602348 Case #5: 0.00000000 Case #6: 24999997.75000000 Case #7: 0.08526911 Case #8: 0.00000010 Case #9: 0.50000000 Case #10: 0.02954574 Case #11: IMPOSSIBLE 1 Case #12: 0.00534134 Case #13: 0.44799209 Case #14: 0.01917417 Case #...
result:
wrong output format Expected 'Case' but found '1' (test case 12)