QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#110780 | #3861. Il Derby della Madonnina | gigabuffoon# | AC ✓ | 104ms | 14144kb | C++20 | 2.6kb | 2023-06-03 23:26:19 | 2023-06-03 23:26:24 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
#define all(a) begin(a),end(a)
#define sz(a) int(size(a))
#define rep(i,a,b) for(int i=(a);i<(b);++i)
using vi = vector<int>;
using ll = long long;
using pll = pair<ll,ll>;
int n;
ll v;
using Point = pair<ll, ll>;
vector<Point> arr;
int Y;
struct SegTree{
int n;
vector<ll> maxx;
SegTree(int n): n(n), maxx(n * 4 + 1) {}
void put(int idx, int val, int li=0, int ri=-1, int i=1){
if(ri == -1) ri = n - 1;
if(li == ri){
maxx[i] = val;
return;
}
int mi = (li + ri) / 2;
if(idx <= mi) put(idx, val, li, mi, 2*i);
else put(idx, val, mi + 1, ri, 2*i+1);
// pull
maxx[i] = max(maxx[2*i], maxx[2*i+1]);
}
ll getMax(int s, int e, int li=0, int ri=-1, int i=1){
if(ri == -1) ri = n - 1;
if(s <= li && ri <= e) return maxx[i];
int mi = (li + ri) / 2;
ll out = 0;
if(s <= mi) out = max(out, getMax(s, e, li, mi, 2*i));
if(e > mi) out = max(out, getMax(s, e, mi + 1, ri, 2*i+1));
return out;
}
};
void solve(){
cin >> n >> v;
// include us at (0, 0)
++n;
arr = vector<Point>(n);
// times
for(int i = 1; i < n; ++i){
ll t;
cin >> t;
arr[i].first = t;
}
// positions
for(int i = 1; i < n; ++i){
ll a;
cin >> a;
arr[i].second = a;
}
// do the racing gems transform!
vector<ll> ys;
for(int i = 0; i < n; ++i){
auto [x, y] = arr[i];
// make everything 45 degrees
x *= v;
// do 45 rotation
ll newX = x - y;
ll newY = x + y;
// slot em back in
arr[i] = {newX, newY};
ys.push_back(newY);
}
// coord comp these ys boi
sort(all(ys));
ys.erase(unique(all(ys)), end(ys));
Y = sz(ys);
for(int i = 0; i < n; ++i){
auto [x, y] = arr[i];
y = lower_bound(all(ys), y) - begin(ys);
arr[i] = {x, y};
}
Point startPoint = arr[0];
// LIS...
sort(all(arr));
SegTree st(Y);
for(int i = n - 1; i >= 0; --i){
auto [x, y] = arr[i];
ll get = st.getMax(y, Y - 1);
if(arr[i] == startPoint){
cout << get << "\n";
return;
}
st.put(y, 1 + get);
}
assert(false);
}
int main(){
cin.tie(0)->sync_with_stdio(0);
cin.exceptions(cin.failbit);
// int t; cin >> t; while(t--)
solve();
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 1ms
memory: 3440kb
input:
3 2 5 10 15 7 17 29
output:
2
result:
ok single line: '2'
Test #2:
score: 0
Accepted
time: 1ms
memory: 3428kb
input:
5 1 5 7 8 11 13 3 3 -2 -2 4
output:
3
result:
ok single line: '3'
Test #3:
score: 0
Accepted
time: 2ms
memory: 3384kb
input:
1 2 3 7
output:
0
result:
ok single line: '0'
Test #4:
score: 0
Accepted
time: 2ms
memory: 3380kb
input:
1 1000000 1000000000 -1000000000
output:
1
result:
ok single line: '1'
Test #5:
score: 0
Accepted
time: 0ms
memory: 3384kb
input:
2 1000000 500000000 1000000000 1000000000 -100000000
output:
2
result:
ok single line: '2'
Test #6:
score: 0
Accepted
time: 37ms
memory: 8208kb
input:
200000 100 11 61 85 131 176 198 200 221 271 273 281 330 364 379 393 439 482 503 541 562 573 606 650 686 731 764 770 771 776 790 795 813 822 827 834 881 894 905 918 949 963 972 1022 1032 1056 1081 1097 1098 1131 1140 1165 1203 1241 1259 1272 1321 1366 1376 1408 1435 1471 1520 1528 1531 1548 1578 1608...
output:
200000
result:
ok single line: '200000'
Test #7:
score: 0
Accepted
time: 72ms
memory: 14084kb
input:
200000 100 10 44 45 78 80 99 105 137 144 148 169 184 197 237 269 296 313 327 345 368 408 433 469 476 479 503 512 548 582 588 605 608 629 632 658 696 709 718 736 769 794 817 840 846 871 897 936 962 977 984 1024 1045 1046 1065 1098 1104 1113 1124 1131 1168 1173 1193 1194 1217 1224 1228 1249 1263 1292 ...
output:
1
result:
ok single line: '1'
Test #8:
score: 0
Accepted
time: 92ms
memory: 13992kb
input:
200000 100 69 154 177 231 259 352 371 443 504 525 549 640 662 728 778 785 856 942 1008 1031 1033 1068 1085 1088 1153 1191 1222 1282 1349 1430 1451 1501 1512 1585 1660 1756 1803 1852 1931 1975 2050 2131 2224 2315 2375 2432 2449 2528 2613 2688 2772 2825 2838 2862 2932 2947 3037 3128 3181 3271 3315 333...
output:
42703
result:
ok single line: '42703'
Test #9:
score: 0
Accepted
time: 94ms
memory: 13996kb
input:
200000 50 43 128 144 197 211 249 329 413 472 540 621 653 716 795 884 914 960 967 1028 1118 1188 1196 1269 1324 1329 1428 1464 1471 1489 1549 1611 1635 1715 1793 1849 1933 1936 1990 2090 2160 2213 2289 2367 2402 2475 2562 2626 2651 2743 2780 2791 2819 2882 2916 2955 2995 3009 3033 3036 3112 3153 3247...
output:
30579
result:
ok single line: '30579'
Test #10:
score: 0
Accepted
time: 98ms
memory: 14120kb
input:
200000 27 75 127 141 175 230 236 237 267 272 368 440 465 472 490 527 598 616 668 700 726 765 788 824 838 856 950 954 986 1032 1065 1100 1133 1231 1325 1362 1375 1409 1476 1571 1616 1633 1726 1825 1917 1922 1946 2032 2071 2092 2124 2133 2202 2236 2253 2261 2289 2351 2451 2533 2599 2670 2750 2820 2900...
output:
22691
result:
ok single line: '22691'
Test #11:
score: 0
Accepted
time: 88ms
memory: 13992kb
input:
200000 15 44 66 161 238 318 334 387 430 455 519 547 579 626 699 760 842 932 942 988 1069 1085 1097 1101 1140 1199 1247 1277 1323 1324 1347 1431 1477 1498 1574 1630 1639 1644 1645 1738 1807 1882 1897 1984 2077 2115 2180 2220 2308 2327 2416 2438 2506 2540 2560 2650 2710 2763 2800 2867 2890 2966 3043 3...
output:
17052
result:
ok single line: '17052'
Test #12:
score: 0
Accepted
time: 104ms
memory: 14096kb
input:
200000 7 50 130 203 288 384 437 467 536 539 571 643 727 790 836 869 958 991 1085 1113 1184 1242 1267 1294 1373 1467 1479 1480 1535 1546 1584 1673 1745 1844 1928 1994 2028 2057 2143 2192 2255 2276 2280 2358 2449 2472 2555 2611 2650 2690 2786 2790 2791 2836 2873 2971 3052 3062 3102 3109 3196 3232 3238...
output:
11710
result:
ok single line: '11710'
Test #13:
score: 0
Accepted
time: 104ms
memory: 14112kb
input:
200000 2 90 161 194 285 374 425 433 439 456 493 584 660 748 792 797 847 876 912 944 1022 1023 1054 1092 1093 1140 1238 1263 1355 1396 1398 1467 1487 1516 1612 1620 1670 1715 1781 1850 1853 1860 1899 1969 1970 1984 1987 2000 2092 2111 2127 2143 2202 2234 2312 2364 2393 2441 2489 2503 2534 2556 2649 2...
output:
6279
result:
ok single line: '6279'
Test #14:
score: 0
Accepted
time: 59ms
memory: 14020kb
input:
200000 2 5000 10000 15000 20000 25000 30000 35000 40000 45000 50000 55000 60000 65000 70000 75000 80000 85000 90000 95000 100000 105000 110000 115000 120000 125000 130000 135000 140000 145000 150000 155000 160000 165000 170000 175000 180000 185000 190000 195000 200000 205000 210000 215000 220000 225...
output:
101235
result:
ok single line: '101235'
Test #15:
score: 0
Accepted
time: 59ms
memory: 14080kb
input:
200000 10000 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99...
output:
101235
result:
ok single line: '101235'
Test #16:
score: 0
Accepted
time: 88ms
memory: 14132kb
input:
200000 42 50 100 150 200 250 300 350 400 450 500 550 600 650 700 750 800 850 900 950 1000 1050 1100 1150 1200 1250 1300 1350 1400 1450 1500 1550 1600 1650 1700 1750 1800 1850 1900 1950 2000 2050 2100 2150 2200 2250 2300 2350 2400 2450 2500 2550 2600 2650 2700 2750 2800 2850 2900 2950 3000 3050 3100 ...
output:
200000
result:
ok single line: '200000'
Test #17:
score: 0
Accepted
time: 89ms
memory: 13988kb
input:
200000 50 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 10...
output:
111350
result:
ok single line: '111350'
Test #18:
score: 0
Accepted
time: 86ms
memory: 13996kb
input:
200000 80 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 10...
output:
91006
result:
ok single line: '91006'
Test #19:
score: 0
Accepted
time: 94ms
memory: 14128kb
input:
200000 10 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 10...
output:
66662
result:
ok single line: '66662'
Test #20:
score: 0
Accepted
time: 98ms
memory: 14004kb
input:
200000 100 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 1...
output:
15078
result:
ok single line: '15078'
Test #21:
score: 0
Accepted
time: 78ms
memory: 14136kb
input:
200000 1 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100...
output:
4
result:
ok single line: '4'
Test #22:
score: 0
Accepted
time: 2ms
memory: 3392kb
input:
10 7 2 3 8 10 13 17 19 22 25 30 1 -2 3 -3 -3 -3 2 0 -3 3
output:
10
result:
ok single line: '10'
Test #23:
score: 0
Accepted
time: 0ms
memory: 3456kb
input:
10 3 5 7 10 11 12 13 15 18 20 23 15 18 32 31 34 41 45 52 60 71
output:
4
result:
ok single line: '4'
Test #24:
score: 0
Accepted
time: 58ms
memory: 14000kb
input:
200000 10 44 118 205 246 317 351 384 455 461 472 520 576 676 730 823 873 876 914 982 989 1007 1030 1120 1219 1271 1336 1387 1412 1474 1476 1517 1552 1609 1664 1699 1708 1727 1734 1768 1846 1919 2005 2060 2155 2186 2246 2285 2327 2355 2435 2521 2590 2631 2673 2694 2766 2776 2821 2885 2888 2958 3027 3...
output:
147565
result:
ok single line: '147565'
Test #25:
score: 0
Accepted
time: 88ms
memory: 14136kb
input:
200000 10 10 19 22 25 27 30 33 36 37 46 53 57 58 60 63 70 77 87 91 97 107 108 118 125 133 142 149 155 161 164 174 181 185 189 193 198 204 212 218 220 227 228 237 247 257 259 266 267 272 278 285 289 298 306 313 316 325 332 342 347 348 355 360 370 375 378 386 395 397 406 416 426 432 436 444 453 456 46...
output:
865
result:
ok single line: '865'
Test #26:
score: 0
Accepted
time: 82ms
memory: 14144kb
input:
200000 10 9 16 23 25 31 37 45 50 60 66 72 78 84 92 101 106 115 118 120 130 140 145 151 154 155 165 170 179 185 189 190 197 207 214 218 228 237 240 247 254 255 257 266 276 284 294 298 299 309 316 320 330 335 339 348 357 359 364 372 377 380 383 384 391 393 400 406 409 418 419 423 427 436 441 443 452 4...
output:
59349
result:
ok single line: '59349'
Test #27:
score: 0
Accepted
time: 62ms
memory: 14044kb
input:
200000 10 59 155 253 276 290 347 371 383 472 495 556 649 721 759 790 846 906 963 1051 1149 1242 1316 1354 1422 1480 1530 1627 1718 1775 1777 1829 1889 1932 2003 2058 2082 2135 2186 2274 2323 2333 2391 2476 2575 2621 2647 2658 2703 2754 2818 2881 2954 3008 3025 3044 3087 3153 3246 3292 3299 3353 3372...
output:
3
result:
ok single line: '3'