QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#66763 | #5170. 加速度 | Minion | 50 | 1ms | 1776kb | C++23 | 1.2kb | 2022-12-09 11:40:20 | 2022-12-09 11:40:24 |
Judging History
answer
#include<cstdio>
#include<cmath>
#define fo(i,x,y) for(int i = x;i <= y;++i)
#define fd(i,x,y) for(int i = x;i >= y;--i)
#define _is 1048576
#define gc() ib[++bi]
#define D double
using namespace std;
char ib[_is];int bi = -1;
int rd()
{
int x = 0;char ch = gc();
while(ch < 48 || ch > 57) ch = gc();
while(ch >= 48 && ch <= 57) x = x * 10 + ch - 48,ch = gc();return x;
}
int n,a,s[5010],l[5010],r[5010];
void Mi(int &x,int y) {if(y < x) x = y;}
void Mx(int &x,int y) {if(y > x) x = y;}
int main()
{
fread(ib,1,_is,stdin);
n = rd(),a = rd();
fo(i,0,n) s[i] = rd();
fo(i,0,n) l[i] = rd(),r[i] = rd();
fo(i,2,n) Mx(l[i],l[i - 1]);
fd(i,n - 1,1) Mi(r[i],r[i + 1]);
fo(i,1,n) if(l[i] > r[i]) return puts("kaibai"),0;
D v = 0,c = 0;
fo(i,1,n)
{
D S = s[i] - s[i - 1];
D nv = sqrt(2 * a * S + v * v),t = (nv - v) / a;
if(c + t > r[i]) return puts("kaibai"),0;
else if(c + t >= l[i]) v = nv,c += t;
else
{
if(v * (l[i] - c) <= S) v = a * t + S / t - 0.5 * a * t;
else if(0.5 * a * (l[i] - c) * (l[i] - c) >= S) v = sqrt(2 * a * S);
else v = sqrt(2 * a * S) + S / (l[i] - c) - 0.5 * a * (l[i] - c);
c = l[i];
}
}
printf("%lf",c);
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Subtask #1:
score: 30
Accepted
Test #1:
score: 30
Accepted
time: 1ms
memory: 1604kb
input:
4 2 0 2 8 10 12 0 1000000000 2 2 4 4 6 7 6 1000000000
output:
6.585786
result:
ok found '6.58579', expected '6.58579', error '0.00000'
Test #2:
score: 0
Accepted
time: 1ms
memory: 1592kb
input:
5 1 0 1 2 3 4 5 0 1000000000 1 2 2 3 3 4 4 5 5 6
output:
5.000000
result:
ok found '5.00000', expected '5.00000', error '0.00000'
Test #3:
score: 0
Accepted
time: 1ms
memory: 1700kb
input:
2 1 0 2 8 0 1000000000 4 1000000000 0 1000000000
output:
6.000000
result:
ok found '6.00000', expected '6.00000', error '0.00000'
Test #4:
score: 0
Accepted
time: 1ms
memory: 1532kb
input:
4 2 0 121 484 520 628 0 1000000000 5 17 11 33 31 33 37 39
output:
37.000000
result:
ok found '37.00000', expected '37.00000', error '0.00000'
Test #5:
score: 0
Accepted
time: 1ms
memory: 1680kb
input:
6 3 0 216 864 901 1014 1188 1437 0 1000000000 6 18 12 36 34 35 39 41 44 45 49 50
output:
49.000000
result:
ok found '49.00000', expected '49.00000', error '0.00000'
Test #6:
score: 0
Accepted
time: 1ms
memory: 1748kb
input:
10 1 0 24 98 214 380 440 622 816 1075 1296 1554 0 1000000000 6 8 13 15 20 21 13 42 37 47 47 59 60 62 62 76 74 76 80 81
output:
80.000000
result:
ok found '80.00000', expected '80.00000', error '0.00000'
Subtask #2:
score: 20
Accepted
Test #7:
score: 20
Accepted
time: 1ms
memory: 1552kb
input:
3 20 0 4632 5697 8786 0 1000000000 1 1000000000 1 1000000000 1 1000000000
output:
29.641188
result:
ok found '29.64119', expected '29.64119', error '0.00000'
Test #8:
score: 0
Accepted
time: 1ms
memory: 1776kb
input:
5000 100 0 26 289 325 425 558 844 885 1020 1186 1385 1398 1414 1444 1470 1914 1932 1956 2127 2194 2316 2339 2419 2521 2567 2647 2655 2804 3016 3053 3102 3240 3294 3491 3540 3591 3642 3680 3763 3804 3865 3955 3997 4048 4053 4100 4212 4222 4238 4302 4354 4358 4532 4534 4547 4550 4551 4695 4761 4762 48...
output:
100.277790
result:
ok found '100.27779', expected '100.27779', error '0.00000'
Test #9:
score: 0
Accepted
time: 1ms
memory: 1592kb
input:
3 300 0 44 217 225 0 1000000000 1 1000000000 1 1000000000 1 1000000000
output:
1.683142
result:
ok found '1.68314', expected '1.68314', error '0.00000'
Test #10:
score: 0
Accepted
time: 1ms
memory: 1688kb
input:
3 300 0 211 253 273 0 1000000000 1 1000000000 1 1000000000 1 1000000000
output:
1.349074
result:
ok found '1.34907', expected '1.34907', error '0.00000'
Test #11:
score: 0
Accepted
time: 1ms
memory: 1584kb
input:
3 2 0 7 21 26 0 1000000000 1 1000000000 1 1000000000 1 1000000000
output:
5.099020
result:
ok found '5.09902', expected '5.09902', error '0.00000'
Test #12:
score: 0
Accepted
time: 1ms
memory: 1752kb
input:
300 300 0 5 26 46 67 75 77 94 103 104 115 116 120 152 156 174 184 203 212 227 248 259 269 278 279 280 300 305 319 320 328 332 357 360 360 372 380 390 404 409 409 420 441 455 464 467 467 503 511 536 553 568 575 597 602 607 622 626 632 637 645 672 673 674 680 681 688 700 705 707 710 710 730 748 753 75...
output:
5.288816
result:
ok found '5.28882', expected '5.28882', error '0.00000'
Test #13:
score: 0
Accepted
time: 1ms
memory: 1772kb
input:
5000 100 0 12 33 57 92 94 120 157 208 220 222 236 236 237 238 247 259 317 323 358 361 365 383 396 431 441 498 506 517 542 542 544 545 571 590 598 626 630 639 639 668 670 674 684 693 693 694 748 753 760 760 767 785 793 798 805 820 851 852 852 867 897 916 942 945 963 969 980 986 994 1010 1014 1019 102...
output:
32.129084
result:
ok found '32.12908', expected '32.12908', error '0.00000'
Test #14:
score: 0
Accepted
time: 1ms
memory: 1680kb
input:
5000 2 0 96 121 212 282 332 358 388 393 464 586 666 972 998 1056 1116 1117 1313 1335 1514 1538 1573 1634 1769 1816 1819 1843 1877 1881 1901 2136 2234 2248 2355 2457 2467 2559 2676 2713 3063 3137 3232 3308 3327 3334 3373 3397 3471 3634 3720 3932 3946 3959 4032 4113 4275 4491 4792 4845 4934 4987 5032 ...
output:
707.018387
result:
ok found '707.01839', expected '707.01839', error '0.00000'
Test #15:
score: 0
Accepted
time: 1ms
memory: 1688kb
input:
3 2 0 7 11 22 0 1000000000 1 1000000000 1 1000000000 1 1000000000
output:
4.690416
result:
ok found '4.69042', expected '4.69042', error '0.00000'
Test #16:
score: 0
Accepted
time: 1ms
memory: 1636kb
input:
300 300 0 3 10 13 28 37 62 69 89 91 98 100 136 154 159 161 161 165 178 212 225 228 241 246 253 257 267 288 293 302 303 307 320 325 327 340 345 359 363 372 382 389 394 395 401 404 408 418 447 453 458 465 466 467 468 484 485 488 495 503 506 516 563 567 570 575 578 585 586 587 599 607 612 624 628 637 6...
output:
5.328478
result:
ok found '5.32848', expected '5.32848', error '0.00000'
Subtask #3:
score: 0
Wrong Answer
Dependency #1:
100%
Accepted
Test #17:
score: 0
Wrong Answer
time: 1ms
memory: 1476kb
input:
121 2 0 81 324 729 1296 2025 2916 3969 5184 6561 8100 9801 10960 12191 13495 14870 16317 17837 19428 21091 22827 24634 26513 29620 32927 36434 40141 44048 48155 52462 56969 61677 66584 71691 74284 76928 79621 82365 85158 88002 90895 93839 96832 99876 102969 106612 110327 114114 117973 121905 125908 ...
output:
kaibai
result:
wrong output format Expected double, but "kaibai" found
Subtask #4:
score: 0
Skipped
Dependency #1:
100%
Accepted
Dependency #2:
100%
Accepted
Dependency #3:
0%