QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#752534 | #5593. Food Processor | 521289 | WA | 14ms | 5624kb | C++14 | 1.1kb | 2024-11-16 08:05:44 | 2024-11-16 08:05:46 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
inline void debug(){
#ifndef mrclr
freopen("C:/Users/52419/Desktop/icpc/debug.in", "r", stdin);
#endif
}
const int N = 1e5 + 10;
int n; double s, t, ans;
pair<double, double> b[N];
#define gc getchar()
#define in read()
inline int read(){
int f=1,k=0; char cp=gc; while(cp!='-'&&(cp<'0'||cp>'9')) cp=gc; if(cp=='-') f=-1,cp=gc;
while(cp>='0'&&cp<='9') k=(k<<3)+(k<<1)+cp-48,cp=gc; return f*k;
}
int main(){ //debug();
s = in, t = in, n = in;
for(int i = 1; i <= n; i++) b[i].first = in, b[i].second = in;
sort(b + 1, b + n + 1, [](pair<int, int> x, pair<int, int> y){
return x.first == y.first? x.second < y.second : x.first > y.first;
});
if(s > b[1].first){ cout<< -1 <<endl; return 0; }
double speed = b[1].second; int pos = 1;
while(s != t){
while(pos != n && b[pos + 1].first >= s) pos++, speed = min(speed, b[pos].second);
double target = pos == n? t : b[pos + 1].first;
ans += speed * log2(s / target); s = target;
} printf("%.8f\n", ans);
return 0;
}
詳細信息
Test #1:
score: 100
Accepted
time: 0ms
memory: 3916kb
input:
10 1 2 10 10 4 5
output:
23.21928095
result:
ok found '23.21928', expected '23.21928', error '0.00000'
Test #2:
score: 0
Accepted
time: 0ms
memory: 4016kb
input:
10000 9999 1 10000 1
output:
0.00014428
result:
ok found '0.00014', expected '0.00014', error '0.00000'
Test #3:
score: 0
Accepted
time: 0ms
memory: 3548kb
input:
10 1 2 8 10 4 5
output:
-1
result:
ok found '-1.00000', expected '-1.00000', error '-0.00000'
Test #4:
score: 0
Accepted
time: 0ms
memory: 3968kb
input:
8 2 1 8 10
output:
20.00000000
result:
ok found '20.00000', expected '20.00000', error '0.00000'
Test #5:
score: 0
Accepted
time: 7ms
memory: 5444kb
input:
1000000 1 100000 10 10 20 20 30 30 40 40 50 50 60 60 70 70 80 80 90 90 100 100 110 110 120 120 130 130 140 140 150 150 160 160 170 170 180 180 190 190 200 200 210 210 220 220 230 230 240 240 250 250 260 260 270 270 280 280 290 290 300 300 310 310 320 320 330 330 340 340 350 350 360 360 370 370 380 3...
output:
1442798.05087962
result:
ok found '1442798.05088', expected '1442798.05088', error '0.00000'
Test #6:
score: 0
Accepted
time: 8ms
memory: 5624kb
input:
1000000 1 100000 1000000 10 999990 20 999980 30 999970 40 999960 50 999950 60 999940 70 999930 80 999920 90 999910 100 999900 110 999890 120 999880 130 999870 140 999860 150 999850 160 999840 170 999830 180 999820 190 999810 200 999800 210 999790 220 999780 230 999770 240 999760 250 999750 260 99974...
output:
199.31568569
result:
ok found '199.31569', expected '199.31569', error '0.00000'
Test #7:
score: 0
Accepted
time: 0ms
memory: 4076kb
input:
1000000 999999 1 1000000 1
output:
0.00000144
result:
ok found '0.00000', expected '0.00000', error '0.00000'
Test #8:
score: 0
Accepted
time: 0ms
memory: 4000kb
input:
1000000 1 1 1000000 999999
output:
19931548.63775561
result:
ok found '19931548.63776', expected '19931548.63776', error '0.00000'
Test #9:
score: 0
Accepted
time: 14ms
memory: 5568kb
input:
500000 12345 100000 4783 477451 939177 624790 942796 933658 388835 943838 591586 528454 934640 609727 702473 355566 440638 181750 957421 781586 785155 972417 184923 378838 791637 199851 268779 962854 866409 181893 288522 536245 889062 89973 535331 469534 740453 750376 26154 41835 470536 449187 72774...
output:
77.58569700
result:
ok found '77.58570', expected '77.58570', error '0.00000'
Test #10:
score: -100
Wrong Answer
time: 0ms
memory: 3892kb
input:
100 90 2 100 100 50 50
output:
57.60015467
result:
wrong answer 1st numbers differ - expected: '15.20031', found: '57.60015', error = '2.78941'