QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#514145 | #9173. Touching Grass | ucup-team4504# | AC ✓ | 1469ms | 29344kb | C++14 | 4.8kb | 2024-08-10 22:18:12 | 2024-08-10 22:18:12 |
Judging History
answer
#include<bits/stdc++.h>
#define rep(i, n) for(int i = 0; i < (n); ++i)
using namespace std;
typedef long long ll;
typedef vector<int> vi;
typedef pair<int, int> pii;
const int Mod = 998244353;
inline void uadd(int &a, const int &b){ a += b - Mod; a += (a>>31) & Mod; }
inline int add(int a, const int &b){ a += b - Mod; a += (a>>31) & Mod; return a; }
inline void usub(int &a, const int &b){ a -= b; a += (a>>31) & Mod; }
inline int sub(int a, const int &b){ a -= b, a += (a>>31) & Mod; return a; }
inline void umul(int &a, const int &b){ a = (int)(1ll * a * b % Mod); }
inline int mul(const int &a, const int &b){ return (int)(1ll * a * b % Mod); }
int qpow(int b, ll p){ int ret = 1; while(p){ if(p & 1) umul(ret, b); umul(b, b), p >>= 1; } return ret; }
const int fN = 10010;
int fact[fN], invfact[fN], inv[fN];
void initfact(int n){
fact[0] = 1; for(int i = 1; i <= n; ++i) fact[i] = mul(fact[i - 1], i);
invfact[n] = qpow(fact[n], Mod - 2); for(int i = n; i > 0; --i) invfact[i - 1] = mul(invfact[i], i);
for(int i = 1; i <= n; ++i) inv[i] = mul(invfact[i], fact[i - 1]);
}
inline int binom(int n, int m){ return mul(fact[n], mul(invfact[m], invfact[n - m])); }
const int inf = 0x3f3f3f3f;
const ll INF = 0x3f3f3f3f3f3f3f3fll;
template<typename T> inline void chmax(T &_a, const T &_b){ (_b>_a) ? (_a=_b) : _a; }
template<typename T> inline void chmin(T &_a, const T &_b){ (_b<_a) ? (_a=_b) : _a; }
int n, m;
struct vec{
int x, y;
vec(){ x = y = 0; }
vec(int _x, int _y){ x = _x, y = _y; }
};
bool operator < (vec lh, vec rh){
return lh.x < rh.x;
}
inline vec operator - (vec lh, vec rh){ return vec(lh.x - rh.x, lh.y - rh.y); }
inline ll cross(vec lh, vec rh){ return 1ll * lh.x * rh.y - 1ll * lh.y * rh.x; }
pair<vec, int> p[1111111];
int ql[300300], qr[300300]; vec qs[300300], qt[300300];
int ans[300300];
int h[1111111], cnt, ncnt;
int bl, N, bi;
int getpos(int u){
int lb = 0, ub = cnt - 1;
while(lb <= ub){
int mid = (lb + ub) >> 1;
if(h[mid] < (u << (bl - bi)))
lb = mid + 1;
else
ub = mid - 1;
}
return lb;
}
void qry(int id, int u){
int lb = getpos(u), ub = getpos(u + 1) - 2;
while(lb <= ub){
int mid = (lb + ub) >> 1;
if(cross(qt[id] - qs[id], p[h[mid + 1]].first - p[h[mid]].first) <= 0)
ub = mid - 1;
else
lb = mid + 1;
}
if(cross(qt[id] - qs[id], p[h[lb]].first - qs[id]) >= 0) ans[id] = h[lb];
}
int main(){
//freopen("g.in", "r", stdin);
//freopen("g.out", "w", stdout);
ios::sync_with_stdio(false);
cin.tie(0);
cin >> n;
for(int i = 1; i <= n; ++i) cin >> p[i].first.x >> p[i].first.y, p[i].second = i;
sort(p + 1, p + n + 1);
bl = 0;
while((1<<bl) < n + 2) ++bl;
N = (1<<bl);
cin >> m;
rep(i, m){
cin >> qs[i].x >> qs[i].y >> qt[i].x >> qt[i].y;
if(qs[i].x > qt[i].x) swap(qs[i], qt[i]);
ql[i] = (int)(lower_bound(p + 1, p + n + 1, make_pair(qs[i], -1)) - p);
qr[i] = (int)(upper_bound(p + 1, p + n + 1, make_pair(qt[i], 1111111)) - p);
--ql[i];
ans[i] = -2;
}
rep(i, n) h[i] = i + 1;
cnt = n;
for(int i = bl; i > 0; --i){
bi = i;
//cout << "----------------- " << i << " -------------------" << endl;
//rep(j, 1 << i){
// cout << j << " " << getpos(j) << " " << getpos(j + 1) << ": ";
// for(int k = getpos(j); k < getpos(j + 1); ++k)
// cout << h[k] << " (" << p[h[k]].first.x << " " << p[h[k]].first.y << "); ";
// cout << endl;
//}
rep(j, m) if(ans[j] < 0 && ql[j] + 1 < qr[j]){
//cout << " qry " << j << ": " << ql[j] << " " << qr[j] << "\n";
if(ql[j] % 2 == 0) qry(j, ql[j] + 1);
ql[j] = ql[j] / 2;
if(qr[j] % 2 == 1) qry(j, qr[j] - 1);
qr[j] = qr[j] / 2;
}
int lst = 0; ncnt = 0;
for(int j = 0; j < (1 << (i - 1)); ++j){
//cout << j << endl;
int lb = lst;
while(lst < cnt && h[lst] < (j + j + 1) << (bl - i)) ++lst;
int pl = lst - 1, pr = lst;
while(lst < cnt && h[lst] < (j + j + 2) << (bl - i)) ++lst;
int rb = lst - 1;
//cout << lb << " " << rb << endl;
while(pl > lb || pr < rb){
//cout << pl << " " << pr << endl;
if(pl > lb && cross(p[h[pl]].first - p[h[pl - 1]].first, p[h[pr]].first - p[h[pl - 1]].first) >= 0) --pl;
else if(pr < rb && cross(p[h[pr]].first - p[h[pl]].first, p[h[pr + 1]].first - p[h[pl]].first) >= 0) ++pr;
else break;
}
//cout << "?????" << endl;
for(int k = lb; k <= pl; ++k) h[ncnt++] = h[k];
for(int k = pr; k <= rb; ++k) h[ncnt++] = h[k];
}
cnt = ncnt;
}
rep(i, m){
if(ans[i] < 0)
cout << "-1\n";
else {
cout << p[ans[i]].second << "\n";
//cout << i << ": " << qs[i].x << " " << p[ans[i]].first.x << " " << qt[i].x << endl;
//assert(p[ans[i]].first.x >= qs[i].x && p[ans[i]].first.x <= qt[i].x && cross(qt[i] - qs[i], p[ans[i]].first - qs[i]) >= 0);
}
}
//cerr << "ok" << endl;
return 0;
}
这程序好像有点Bug,我给组数据试试?
詳細信息
Test #1:
score: 100
Accepted
time: 5ms
memory: 25636kb
input:
3 2 3 6 4 4 5 3 1 4 7 6 7 4 1 2 1 6 1 6
output:
3 1 -1
result:
ok 3 queries
Test #2:
score: 0
Accepted
time: 0ms
memory: 26124kb
input:
1 7 10 1 5 3 9 7
output:
1
result:
ok 1 queries
Test #3:
score: 0
Accepted
time: 0ms
memory: 26176kb
input:
2 33 7 86 14 2 72 74 56 83 70 95 100 66
output:
-1 -1
result:
ok 2 queries
Test #4:
score: 0
Accepted
time: 0ms
memory: 25528kb
input:
3 590 27 77 202 795 527 3 76 639 304 621 275 361 860 959 788 734 405 422
output:
-1 -1 -1
result:
ok 3 queries
Test #5:
score: 0
Accepted
time: 0ms
memory: 26160kb
input:
5 258 931 102 85 383 957 124 128 796 906 5 329 73 759 927 480 626 118 591 440 370 595 676 407 887 608 182 399 850 65 102
output:
3 3 -1 -1 3
result:
ok 5 queries
Test #6:
score: 0
Accepted
time: 3ms
memory: 25828kb
input:
8 515 549 180 48 6 444 280 37 860 488 17 622 457 161 915 348 8 424 777 116 971 323 964 277 458 4 482 804 312 770 206 244 512 971 178 688 265 531 426 320 591 736 230 865 762 552 762 454 129
output:
-1 -1 1 1 8 1 -1 1
result:
ok 8 queries
Test #7:
score: 0
Accepted
time: 0ms
memory: 25224kb
input:
13 335 343 437 210 961 689 756 260 716 897 899 129 424 638 179 109 742 319 135 378 561 658 205 18 598 724 13 911 515 141 839 78 158 981 973 571 643 962 720 112 604 755 516 80 339 410 773 192 638 458 45 347 818 629 857 44 606 76 950 269 990 644 872 556 97 298 783 44 619 752 978 119 74 28 214 902 226 ...
output:
5 10 5 5 -1 2 -1 -1 -1 7 -1 -1 5
result:
ok 13 queries
Test #8:
score: 0
Accepted
time: 0ms
memory: 26492kb
input:
10 92 583 165 167 58 286 62 426 156 591 673 825 640 518 254 791 102 651 197 154 10 798 988 642 805 637 34 533 820 926 453 952 99 289 626 798 261 489 612 719 420 441 522 975 262 845 782 988 920 229 807 454 810 270 720 967 281 945 187 250 604
output:
-1 -1 -1 6 6 6 -1 -1 6 6
result:
ok 10 queries
Test #9:
score: 0
Accepted
time: 0ms
memory: 25960kb
input:
10 580 141 638 496 866 385 438 257 759 113 479 705 963 957 812 555 616 986 548 992 10 612 256 901 196 809 867 277 212 995 108 957 8 292 194 922 835 934 864 838 966 972 483 649 763 568 762 19 827 712 894 961 920 514 519 734 947 276 698 492 827
output:
9 10 7 10 -1 7 10 -1 10 -1
result:
ok 10 queries
Test #10:
score: 0
Accepted
time: 0ms
memory: 26176kb
input:
10 411 160 78 181 160 292 586 903 76 152 337 349 603 339 245 326 734 532 812 18 10 735 47 816 111 799 113 664 236 490 291 28 392 419 672 795 228 473 66 583 800 520 12 157 224 59 18 617 507 690 383 744 83 22 306 545 123 819 137 22 23
output:
-1 9 6 4 -1 1 5 9 6 5
result:
ok 10 queries
Test #11:
score: 0
Accepted
time: 0ms
memory: 26524kb
input:
10 65 315 794 631 93 430 241 748 627 717 17 796 293 158 5 316 726 566 341 597 10 649 66 383 213 995 178 432 719 444 692 427 839 579 583 210 240 701 572 237 10 589 127 591 243 468 32 10 86 888 600 568 324 402 267 935 56 292 261 127 348
output:
5 2 -1 4 5 -1 6 2 2 4
result:
ok 10 queries
Test #12:
score: 0
Accepted
time: 0ms
memory: 26060kb
input:
10 1 731 733 836 217 848 666 864 864 698 740 427 464 695 369 694 356 707 316 594 10 40 485 971 195 124 99 694 29 747 235 841 73 831 105 619 128 840 220 770 154 690 649 9 21 163 400 280 398 247 610 475 325 824 258 62 684 259 673 911 370
output:
5 3 -1 4 -1 3 3 7 2 5
result:
ok 10 queries
Test #13:
score: 0
Accepted
time: 3ms
memory: 25932kb
input:
10 36 458 114 866 202 362 687 667 82 766 515 524 254 847 316 914 404 884 439 806 10 765 141 658 35 394 79 867 542 182 194 657 52 536 32 860 552 662 717 901 80 882 746 790 717 626 349 704 702 819 198 730 79 620 144 805 773 890 264 708 199
output:
4 4 10 4 4 -1 4 -1 4 -1
result:
ok 10 queries
Test #14:
score: 0
Accepted
time: 0ms
memory: 26628kb
input:
100 104375211 269633504 751249866 429319365 689374899 460732977 314375099 460732977 809374835 384816748 621874935 481675385 98750214 259162300 526249986 497382191 869374803 319371723 978124745 36649215 235625141 418848161 61250234 175392668 959374755 120418847 940624765 180628270 708124889 452879574...
output:
-1 -1 -1 80 95 -1 -1 85 -1 74 18 3 77 -1 31 -1 91 -1 -1 -1 -1 19 -1 93 -1 80 -1 -1 16 57 -1 -1 -1 92 24 58 93 93 80 80 -1 33 20 85 -1 39 57 92 3 80 -1 63 -1 -1 21 93 -1 93 -1 11 77 56 93 4 -1 39 6 11 -1 83 33 17 -1 -1 91 -1 80 32 8 57 25 53 -1 -1 -1 80 -1 93 -1 80 25 -1 21 16 32 -1 80 -1 -1 -1
result:
ok 100 queries
Test #15:
score: 0
Accepted
time: 3ms
memory: 25024kb
input:
100 578906149 184293121 327343971 93193681 311718991 53403121 527343715 196858561 687499760 60732961 628906085 153926641 382812650 162303601 310156493 48167521 674218527 93193681 559374924 190575841 693749752 39790561 442187574 190575841 613281105 166492081 455468807 193717201 378906405 159162241 40...
output:
-1 -1 -1 -1 -1 -1 -1 -1 79 32 27 53 10 80 -1 79 -1 100 47 -1 -1 -1 50 -1 100 52 45 35 32 53 100 45 97 4 -1 -1 -1 79 95 -1 49 45 71 93 53 -1 80 22 32 -1 -1 -1 -1 35 95 -1 -1 100 -1 -1 4 79 -1 -1 -1 -1 10 -1 35 -1 80 -1 -1 53 100 53 97 -1 -1 -1 -1 53 35 1 -1 55 -1 79 53 -1 -1 -1 -1 -1 100 79 71 -1 -1 80
result:
ok 100 queries
Test #16:
score: 0
Accepted
time: 3ms
memory: 26216kb
input:
100 689374899 184293121 290000112 180104641 610624941 193717201 361250074 190575841 38750246 39790561 265625125 174869041 21875255 5235601 44375243 48167521 194375163 153926641 168125177 143455441 809374835 153926641 942499764 70157041 98750214 103664881 882499796 119371681 209375155 159162241 90499...
output:
-1 -1 1 46 61 46 -1 -1 -1 70 9 3 -1 -1 -1 36 -1 57 76 63 -1 -1 -1 70 -1 25 79 -1 61 -1 70 70 -1 57 17 -1 57 4 70 -1 70 62 -1 -1 87 95 -1 25 99 22 25 25 -1 -1 70 -1 70 -1 25 -1 32 45 63 -1 -1 73 -1 70 90 40 97 -1 25 45 97 82 -1 70 69 -1 96 96 88 22 -1 35 4 -1 -1 -1 48 -1 -1 25 -1 34 6 -1 60 -1
result:
ok 100 queries
Test #17:
score: 0
Accepted
time: 0ms
memory: 26820kb
input:
100 464062523 494764390 206250188 335078529 832812287 269633504 860937269 198952877 193750196 316753922 154687721 232984290 245312663 384816748 673437389 452879574 554687465 492146589 410937557 484293186 898437245 36649215 826562291 282722509 867187265 180628270 176562707 282722509 101562755 1308900...
output:
70 75 -1 -1 -1 75 52 89 75 -1 -1 -1 -1 80 -1 85 72 -1 -1 71 -1 92 -1 24 86 -1 77 52 -1 52 75 62 62 5 80 72 -1 -1 -1 -1 -1 65 52 75 40 52 7 7 -1 68 -1 -1 52 70 64 77 -1 80 75 5 -1 -1 -1 -1 -1 52 -1 23 52 -1 -1 48 52 14 89 -1 -1 -1 -1 52 52 -1 -1 -1 -1 -1 27 53 -1 85 -1 -1 -1 100 -1 53 -1 -1 97 20
result:
ok 100 queries
Test #18:
score: 0
Accepted
time: 0ms
memory: 26156kb
input:
1000 99265 42424 6525 80276 43140 68127 51964 40908 9094 12209 56077 44140 35448 98852 28625 82098 19575 99100 71555 84605 82554 53440 66211 96383 32553 56834 24935 45751 93854 42815 48816 77595 43061 84311 28790 91865 82689 42188 14193 68109 25414 35706 42978 37435 95707 24033 5230 8768 98110 60382...
output:
164 276 290 45 74 289 670 45 612 921 365 502 925 969 418 894 791 620 353 860 356 622 683 652 245 489 690 309 227 466 599 250 605 951 695 968 447 473 235 484 92 940 749 343 876 630 831 516 599 782 506 818 612 109 184 289 39 631 763 920 86 435 968 103 18 932 286 486 403 784 233 814 400 218 432 973 232...
result:
ok 1000 queries
Test #19:
score: 0
Accepted
time: 0ms
memory: 26176kb
input:
1000 28300 86536 22994 53484 20020 15737 26356 89356 26753 11847 30605 50013 42932 18585 8899 72465 4411 49361 26585 90626 51327 84833 52365 90943 401 48310 10162 38550 50430 95099 1622 24788 12739 10766 14862 73531 33902 46319 32354 4223 11820 34406 45407 20670 14396 75226 75914 58613 8972 69295 27...
output:
941 189 927 605 945 439 212 12 225 109 717 698 983 826 876 89 865 666 212 89 382 650 38 601 606 150 970 409 826 409 325 894 941 749 904 143 109 544 708 89 570 573 645 98 773 216 98 850 941 212 143 438 558 755 225 98 572 893 358 544 305 94 935 12 965 98 945 761 594 754 488 945 143 225 390 495 346 225...
result:
ok 1000 queries
Test #20:
score: 0
Accepted
time: 0ms
memory: 26164kb
input:
1000 78977 2074 66043 47947 64156 52000 51800 85017 72769 95309 46109 79414 36736 33830 49795 80993 55338 34213 43064 76999 65173 82889 66315 3970 99433 51579 66787 4438 58356 6041 93272 76919 50078 59284 56182 1396 67908 10035 43286 8887 97186 26326 96899 31500 63434 29455 48732 30636 35450 11558 9...
output:
982 387 615 522 562 339 839 381 954 474 173 758 750 353 808 348 282 547 400 499 686 585 430 549 386 33 906 955 513 551 42 417 559 836 438 481 968 43 913 802 720 350 495 636 654 300 113 606 248 435 40 531 178 53 417 645 710 800 564 895 891 972 355 281 912 311 638 549 281 564 914 522 710 799 949 648 9...
result:
ok 1000 queries
Test #21:
score: 0
Accepted
time: 0ms
memory: 25524kb
input:
1000 36848 40244 44170 64859 73782 6532 73472 36699 46777 34630 63459 23868 78986 72094 26865 4675 77925 17395 47410 23785 94705 11395 33118 67032 22374 19144 80516 8954 18542 45485 98758 26287 74867 20978 12033 1526 46253 7927 98382 56613 5121 17203 79008 36907 43003 28552 26916 58370 19889 4914 67...
output:
1000 803 60 138 474 748 476 282 787 145 617 270 250 4 977 489 861 839 257 980 708 706 541 888 2 60 875 189 324 47 694 437 651 476 117 351 899 317 61 894 205 822 867 532 298 541 144 750 577 576 16 100 591 732 60 550 141 521 83 639 159 307 24 495 273 710 117 698 822 270 577 821 203 426 638 529 561 821...
result:
ok 1000 queries
Test #22:
score: 0
Accepted
time: 5ms
memory: 24908kb
input:
1000 68145 63988 20049 98052 65320 22484 51398 26637 97914 51952 59106 47893 72627 33233 29799 7761 46724 11815 12844 6192 33841 34192 77477 42156 34099 67744 35764 32534 48996 75348 2282 58347 88521 63517 52160 16252 4725 36435 49709 34142 24477 86718 15505 15637 92399 27917 93836 96166 15947 48818...
output:
-1 24 675 515 139 603 320 607 -1 905 430 647 798 304 -1 334 409 285 601 627 460 898 787 255 33 181 942 532 426 877 607 602 502 234 69 229 775 106 309 984 810 415 268 639 310 256 428 795 315 352 59 751 43 197 164 125 678 54 37 706 179 309 540 578 286 523 707 416 642 -1 828 5 737 894 233 433 343 485 6...
result:
ok 1000 queries
Test #23:
score: 0
Accepted
time: 0ms
memory: 25604kb
input:
1000 32262 64303 61279 44889 65478 96756 56972 89836 44573 79202 44593 95816 14861 37219 39343 89033 9952 60289 45649 51122 97456 86044 9778 80279 67982 59088 9670 68241 96441 28060 21016 68624 39423 73225 42680 27947 13255 72628 99637 80438 47774 87915 22076 84626 92140 53091 87815 38151 13374 9221...
output:
920 721 578 6 798 254 287 926 403 612 433 514 745 122 154 838 116 430 571 802 110 994 333 464 866 730 599 530 775 939 304 757 399 807 243 615 417 312 855 537 616 905 877 166 492 23 855 778 917 816 886 362 951 113 1 455 142 982 413 40 700 180 439 504 651 104 302 164 517 619 683 47 127 569 368 52 444 ...
result:
ok 1000 queries
Test #24:
score: 0
Accepted
time: 2ms
memory: 26348kb
input:
1000 34857 67019 7415 19038 58888 94480 24948 36803 4940 97142 6746 73658 12646 64268 8936 83873 26881 43000 13264 45746 29912 79916 63241 96138 23329 38401 13070 78956 71587 84047 54276 87450 4314 66647 45825 75136 11422 96929 17321 83961 64272 56369 5721 67445 6924 54753 11517 42364 30176 46402 75...
output:
545 705 770 432 504 930 792 349 645 821 649 83 162 524 504 504 504 880 721 33 504 817 504 532 350 548 -1 220 258 238 106 927 504 350 809 657 202 182 792 504 504 840 3 729 99 504 554 384 68 504 504 30 79 228 393 504 83 364 350 130 930 853 939 504 728 504 504 526 792 608 92 824 238 873 446 511 621 809...
result:
ok 1000 queries
Test #25:
score: 0
Accepted
time: 23ms
memory: 26580kb
input:
10000 38272240 171963896 85763537 299021340 209046366 429572370 100566222 323438826 348521793 484670406 683539908 476578264 58128140 238845144 29955072 128921788 390127712 492238275 568014266 497017858 70914001 269704370 596910178 493996823 814144879 413794809 20346155 19534460 68799013 265021178 85...
output:
8602 4201 1274 7787 -1 3807 6942 -1 8012 -1 1953 -1 3471 126 -1 4688 8324 6881 2244 1448 -1 6981 -1 -1 -1 225 -1 -1 -1 9652 -1 3859 -1 3407 -1 6768 706 -1 5023 -1 3857 1993 8681 3627 -1 -1 -1 -1 -1 -1 3972 711 5245 3487 -1 7288 8607 8317 -1 7485 4741 -1 1274 4529 -1 511 -1 9958 -1 4729 9865 -1 6548 ...
result:
ok 10000 queries
Test #26:
score: 0
Accepted
time: 16ms
memory: 25076kb
input:
10000 538046266 197784461 476080108 199045941 663791061 132905661 631533394 164931461 340414522 138392441 499419375 199834601 366910531 163795941 674331495 116306201 461428849 197724301 694164716 60114881 400704764 182737881 560764961 194261341 365066466 162412261 620699396 172029401 664760937 13156...
output:
5599 8776 140 -1 -1 7431 3980 -1 3591 1048 184 -1 895 -1 -1 692 -1 -1 -1 6318 -1 7520 3212 -1 -1 8961 -1 -1 4968 130 -1 -1 -1 8664 9472 -1 -1 8184 4917 -1 -1 -1 -1 -1 9512 8119 7078 314 -1 -1 2656 794 7243 9507 -1 3453 7320 1122 5608 -1 8992 -1 -1 -1 4550 6573 -1 -1 1901 -1 -1 3096 9560 -1 2578 9992...
result:
ok 10000 queries
Test #27:
score: 0
Accepted
time: 21ms
memory: 26376kb
input:
10000 966569030 59529261 112676090 136241721 793202482 171189981 571992139 198585341 732637525 183723941 20747735 12892101 683252109 190583121 907025871 124519921 48407673 83990881 254143800 181424701 155339503 155319021 751353384 180404801 120315034 140204761 918000160 116802521 99742983 128818541 ...
output:
3871 2274 6019 -1 5758 -1 -1 9574 9439 -1 9040 2566 -1 4137 8283 -1 674 2951 3936 -1 6822 1027 -1 -1 3005 559 2700 1066 -1 -1 -1 -1 4305 -1 -1 -1 1967 9518 -1 -1 6040 4558 6531 3684 9512 537 -1 -1 7834 -1 -1 -1 6166 7209 5730 1227 4946 3857 -1 -1 -1 5156 8811 -1 5758 5547 -1 -1 -1 -1 4462 7317 27 -1...
result:
ok 10000 queries
Test #28:
score: 0
Accepted
time: 19ms
memory: 25504kb
input:
10000 102060601 62886900 627280153 484390637 100184870 11682120 102434260 68830228 463939118 498680015 867963024 239597464 456246576 498153391 893113435 117470067 152868930 294737818 899722180 17406805 112567669 157035046 891276743 131860538 344381251 475642566 775896049 400445831 794264828 38029070...
output:
6145 -1 -1 3581 2094 3936 -1 2441 40 1407 -1 -1 5989 -1 -1 -1 -1 -1 2719 -1 -1 -1 5585 2805 4658 -1 -1 3776 2624 -1 4875 5639 5753 -1 4029 -1 -1 5823 6439 6394 -1 -1 9431 2952 -1 5588 3352 8297 -1 -1 3722 -1 927 -1 6570 -1 7946 4301 8059 8546 8729 416 8546 -1 -1 5485 -1 -1 -1 5562 6531 4057 5984 -1 ...
result:
ok 10000 queries
Test #29:
score: 0
Accepted
time: 285ms
memory: 26032kb
input:
1000 950113785 186384430 159684420 380691928 423030085 495461044 956718680 161922916 650997055 482691826 96120480 297230473 28763630 87692221 222855990 430845724 250779655 446691862 416817560 494768737 980064695 1153846 34256810 120153727 789634455 422768809 456250745 498230272 231488130 436153411 2...
output:
813 -1 123 745 866 -1 -1 268 901 512 -1 -1 918 86 -1 71 -1 123 798 -1 -1 410 87 585 -1 606 700 -1 -1 352 -1 444 -1 902 -1 -1 -1 880 -1 -1 736 -1 -1 946 -1 448 -1 -1 -1 91 828 16 663 443 295 268 576 995 438 -1 236 -1 802 143 468 802 -1 -1 587 -1 -1 -1 273 552 365 780 457 400 754 -1 874 844 -1 -1 -1 -...
result:
ok 300000 queries
Test #30:
score: 0
Accepted
time: 246ms
memory: 26324kb
input:
1000 697377268 28215174 392183621 176644830 692908760 53845751 570106531 191260105 355781629 149906569 345427769 138460501 699230064 11261455 529617489 198429282 557845381 194213929 388913981 174890997 651248097 142522009 310115657 66122582 475750170 198890817 388178312 174491000 673645131 109291489...
output:
541 897 825 -1 853 841 929 564 -1 107 827 -1 -1 170 298 335 411 -1 -1 -1 703 141 -1 -1 -1 -1 107 -1 687 845 -1 201 726 -1 853 386 20 314 851 -1 -1 -1 -1 955 -1 653 572 494 -1 13 933 532 654 841 482 -1 -1 -1 170 814 277 934 -1 -1 386 121 236 897 -1 726 147 94 386 -1 -1 -1 892 386 -1 107 959 -1 -1 -1 ...
result:
ok 300000 queries
Test #31:
score: 0
Accepted
time: 289ms
memory: 25972kb
input:
1000 271640660 182644785 671792665 190860108 39096040 57476493 66104175 93568530 77025140 103937683 73755390 101014628 597046180 197198522 756217610 177229441 28044285 33107445 63030610 90337785 68916160 96399278 20981625 6092263 728490130 182644785 922647885 104337680 58060590 84737827 23074265 162...
output:
670 -1 211 338 -1 160 86 846 183 35 706 750 206 730 500 541 -1 -1 846 -1 630 147 -1 669 -1 -1 -1 -1 649 472 483 665 -1 -1 -1 319 326 -1 -1 1 -1 21 -1 670 284 -1 952 643 -1 915 -1 553 527 361 -1 -1 959 -1 730 -1 326 -1 826 -1 -1 -1 -1 -1 117 984 650 -1 7 378 307 -1 984 569 -1 -1 310 -1 -1 -1 348 -1 -...
result:
ok 300000 queries
Test #32:
score: 0
Accepted
time: 167ms
memory: 29228kb
input:
800000 784741874 210533410 353085426 422755675 781708646 222556219 506812566 458364034 622169826 435235123 805863650 34374448 645900698 423339673 605188280 441890482 729903354 343317577 516837948 458064559 207100590 171244993 805215474 52868296 323627088 402563830 193698202 8877208 731245436 3412825...
output:
212624 -1 347536 263915 522222 456498 628124 -1 -1 248430 -1 366142 69668 509092 -1 223061 318985 -1 -1 110945 9258 -1 -1 462461 -1 359491 58835 -1 313798 509172 124584 138493 386447 88431 348978 672438 226148 -1 -1 282 -1 515671 127478 447594 355875 200549 -1 407365 -1 206383 12109 130807 -1 62393 ...
result:
ok 1000 queries
Test #33:
score: 0
Accepted
time: 513ms
memory: 29140kb
input:
800000 15080485 373982169 614292757 749424468 378357740 628541521 79381350 843893217 453124596 119687443 484302417 974146980 516574553 714424410 430785761 282534933 619155709 566316775 649254128 947571187 579369273 470081889 732948204 583913287 625089279 367784769 945725299 140561959 209803202 62339...
output:
670697 251135 473200 248863 301126 18653 747788 461885 13303 328169 642220 188588 103308 532573 743858 157000 690651 563534 737549 464531 249900 751668 524604 248435 621592 528988 343526 120338 669115 498716 137551 622510 16563 614833 518869 571061 328700 476890 316036 683604 100006 31190 204310 337...
result:
ok 300000 queries
Test #34:
score: 0
Accepted
time: 634ms
memory: 29272kb
input:
800000 970862261 177937361 320989261 359990571 312920234 84857429 506272064 53645521 670985814 111918467 981396383 144694379 874534410 89958190 632186002 67853132 401513257 615236965 950421177 140354653 163951033 125742729 346216429 321373855 348435258 69323315 197782340 66308601 320792790 185377967...
output:
608700 6359 757129 587023 732465 465042 253818 284881 766670 31242 413611 494542 160127 421127 86643 252335 203964 180849 650456 733854 474242 558477 419203 20136 787328 14537 571242 195352 259182 784360 779475 613178 370656 269422 351830 172583 106817 503224 83638 405695 683002 468205 726197 484533...
result:
ok 300000 queries
Test #35:
score: 0
Accepted
time: 459ms
memory: 29204kb
input:
800000 356316339 447808912 751110608 792107918 99787335 360590392 635903936 892982116 589354691 432044768 736118372 905462318 115688455 353611127 468465955 811503516 684297455 707955369 406557555 800894802 377108926 805379888 485562074 944224487 852274684 653824477 205450280 368507930 406144647 7949...
output:
123226 729594 673647 477493 259469 472748 564984 22110 287022 524087 676697 281287 144204 604451 568989 664762 319437 512519 142419 338854 463153 606883 161154 123192 55024 502713 30909 90726 172627 706984 271683 490206 200688 3278 536281 484116 730939 733813 547506 301590 356026 127376 686748 38623...
result:
ok 300000 queries
Test #36:
score: 0
Accepted
time: 480ms
memory: 29212kb
input:
800000 435968634 684362547 441064604 505046464 620484857 319028341 792345009 848373099 406573813 192217214 787140656 668338086 230367139 87502268 7703404 901849512 455820381 774559804 562289268 135429218 520747368 875359996 432291380 821751357 648738114 190011349 727553490 530479798 407700356 797048...
output:
784379 467401 608348 786281 543289 256393 431269 770595 649796 91814 137362 71228 731231 375610 98222 321822 658641 78773 106550 513765 765622 574474 261014 192751 622836 284017 159053 540427 255847 785222 603236 147060 652765 675789 791280 789287 346035 750154 52414 210927 425512 133666 653494 5995...
result:
ok 300000 queries
Test #37:
score: 0
Accepted
time: 586ms
memory: 29268kb
input:
800000 143880629 433393385 193643808 401935625 734144605 58191320 190108233 190306639 307572084 749789023 121817450 260320727 134903541 534247251 409365097 625924172 424385045 60106896 252114717 122961448 42626244 383252808 751403226 173229739 46834403 459189568 359323778 215474092 882772085 3671827...
output:
688971 488184 269679 330670 159352 712269 119693 515905 116500 91801 572974 540602 488045 22350 300604 690732 546557 724428 693273 515024 746238 149082 140903 285567 85866 556118 632309 591538 186635 658077 105846 760991 266952 88127 794457 661925 2681 640375 341677 403824 311631 166590 298346 51271...
result:
ok 300000 queries
Test #38:
score: 0
Accepted
time: 430ms
memory: 29288kb
input:
800000 120950448 879584359 488651784 384240390 50352543 580051609 684557638 854032618 100203234 982242049 217991920 559662067 213687995 844385542 640792989 809993298 293538395 394639002 55549277 500280434 233493640 173065576 282807645 701191513 358926465 109895126 302448777 536794411 48385886 772998...
output:
204707 539325 567480 661183 253220 332356 725705 298341 726293 500332 324661 578354 761193 117098 724834 673439 576883 527199 402533 341092 689342 734979 22090 138998 372633 286058 164841 624039 42437 42488 301956 438593 542191 202509 202376 188818 266903 480982 502061 160014 294388 694114 41237 513...
result:
ok 300000 queries
Test #39:
score: 0
Accepted
time: 514ms
memory: 29156kb
input:
800000 258986337 48032349 495126669 937655014 363138946 448769089 947944161 53929755 695238886 486364930 892505590 867548021 875030640 945391816 977957428 818317778 651160767 12263458 769679148 273876574 587102465 436376813 886111321 650487953 923548509 996735880 941414107 662118453 515705115 756515...
output:
282018 530759 674047 160928 692891 372889 286647 772837 106691 538159 346492 186141 666717 196765 499028 8018 778817 72869 437274 304666 350880 114577 670956 726556 310449 403482 19581 451930 555705 744443 19904 35814 423097 497545 40274 285355 272405 43142 405074 710967 363891 249278 26164 618393 1...
result:
ok 300000 queries
Test #40:
score: 0
Accepted
time: 642ms
memory: 29156kb
input:
800000 641334233 187074003 875766628 667554002 336586126 18610447 676448239 499188275 621023240 769515237 625565226 349609934 308558729 152015742 452394191 284105986 984185478 657079647 11781168 368322295 713554606 117993246 985186221 94429578 923572297 942840885 977883542 451479220 601049999 244349...
output:
662714 267816 799991 497507 542191 234745 362501 225650 754657 146445 139604 166204 325987 496319 502367 502342 614690 315218 212677 745429 93754 357289 371096 282970 607019 175803 799625 686563 675430 774912 704811 475804 595004 548841 261635 343854 736057 159187 477198 299181 531519 515042 221738 ...
result:
ok 300000 queries
Test #41:
score: 0
Accepted
time: 458ms
memory: 29212kb
input:
800000 682431823 998431836 406575665 715536389 841120406 907463684 793426356 829068871 934050284 751400755 623576408 532345158 336831574 979273896 267559821 851441101 580059710 848375997 857971070 917959840 997245552 635406298 989754491 416304670 767863602 676672360 967769179 400935506 401530137 450...
output:
427337 740307 231053 157541 476781 383132 698160 440823 203375 337502 120727 553936 515776 376063 384381 561782 292508 674397 662093 515383 663049 96123 308207 361702 646076 757881 156414 440211 597175 712794 40535 288997 271483 616121 90517 306294 90166 321547 280010 303591 385641 734922 598862 318...
result:
ok 300000 queries
Test #42:
score: 0
Accepted
time: 787ms
memory: 29264kb
input:
800000 260900518 163178668 316985323 38366297 864012643 36553540 639356817 372141031 901980026 653040850 979372608 57617402 463572691 67613183 465802714 237038526 984756848 217872622 400002897 37109692 508000917 448629376 807796704 247261183 374507931 33039202 376743300 20719885 182372501 150756837 ...
output:
518218 131506 589191 617241 376753 358908 236010 111462 201495 212007 226206 560720 595871 20759 583582 740326 228855 58855 754344 441655 700681 478485 660249 733213 613069 611526 142368 387016 291957 523390 680641 774537 441617 161251 423394 249000 381211 324749 -1 540329 543017 617418 308289 32543...
result:
ok 300000 queries
Test #43:
score: 0
Accepted
time: 612ms
memory: 29140kb
input:
800000 251619778 603625954 88806435 329362117 123326212 392067283 296890364 355020689 453945473 85562108 371565146 158989343 6919200 580245649 73059719 45172878 328198756 4456177 616630236 812681826 508575995 177693374 50473678 49420471 33162113 377776961 389279708 556666414 400663114 454419600 2785...
output:
254443 472078 566270 609900 342481 145702 228836 458059 439184 120992 630488 453727 339144 385058 228836 334549 231755 211869 726076 250216 402140 106832 532984 598626 237080 228836 228836 28204 27092 681469 795822 63210 519431 108983 505522 730314 492104 495476 497700 164594 580547 163410 502136 40...
result:
ok 300000 queries
Test #44:
score: 0
Accepted
time: 929ms
memory: 29128kb
input:
800000 431411522 229477104 848697968 348780310 898224829 132660945 507266195 347040936 993745897 80751505 321545732 33082073 878225728 84657346 209237198 82627583 841969289 207966358 624596318 250828990 996107002 180430843 358130378 12508253 441659996 123282966 194576559 234455130 980404912 38272182...
output:
757281 531631 69541 462645 712737 789679 469065 354939 680859 160131 694084 122755 171250 -1 291960 676988 133939 436447 595204 673170 74840 545232 655916 740108 195576 348180 32927 120225 173876 451258 658731 598029 253006 582467 560141 796918 -1 545232 231786 55223 416511 354939 -1 351814 706649 3...
result:
ok 300000 queries
Test #45:
score: 0
Accepted
time: 559ms
memory: 29264kb
input:
800000 188938795 288699575 67887586 105641896 32659451 156569107 296727786 203608279 484158735 163446877 566391153 534307510 307733866 600060663 20710145 929949 432850012 187395623 139988134 18857803 40336164 528819843 33665824 69337269 458879498 322488348 293366055 70654341 374090214 494658918 2922...
output:
638686 454208 311999 -1 311999 311999 169254 -1 311999 -1 522784 631545 509079 389575 782266 -1 -1 638686 -1 36690 234712 369164 500782 581551 638686 638686 -1 459541 -1 -1 -1 -1 370657 493723 631545 108944 633177 444884 118584 453049 -1 -1 110287 133725 323505 638686 -1 -1 246612 509079 -1 543671 7...
result:
ok 300000 queries
Test #46:
score: 0
Accepted
time: 1111ms
memory: 29132kb
input:
800000 360084296 195820110 910757589 108972900 308092165 6844895 671280725 135888029 391985030 78719755 793012367 138559273 832866938 99804758 784742353 332383861 644722058 59402949 412571121 24988121 678975223 547753759 255669626 46173402 668079205 198930675 336540127 145350434 607058233 34893572 3...
output:
619917 -1 246178 -1 -1 328857 149819 483592 -1 -1 -1 -1 -1 168983 328857 474745 145926 -1 -1 412193 708066 246178 240858 646378 -1 474745 678464 273416 -1 575186 -1 769977 -1 149819 357956 -1 -1 149819 -1 35628 -1 -1 145172 626692 -1 -1 352178 407848 708066 541071 54464 76142 583033 -1 328857 14523 ...
result:
ok 300000 queries
Test #47:
score: 0
Accepted
time: 786ms
memory: 29292kb
input:
800000 152842815 74697484 203259578 28007914 411824102 137543311 438454387 197483150 336272234 310863327 17202834 532334222 619796690 62775834 394092189 99135257 349748840 122319719 167450725 108884484 658117474 69039084 98604967 161108018 287641562 13743817 447122406 190157107 325304405 218288364 6...
output:
-1 -1 -1 780609 444706 -1 554340 -1 -1 -1 -1 -1 245968 -1 -1 -1 218926 -1 -1 -1 -1 706641 -1 529535 -1 634429 737130 -1 614414 -1 -1 -1 -1 305149 -1 -1 760939 695726 -1 -1 305551 -1 698033 -1 -1 45562 769847 -1 721687 -1 94485 -1 -1 -1 -1 -1 391890 -1 -1 -1 -1 -1 106150 -1 -1 529535 -1 -1 -1 7866 -1...
result:
ok 300000 queries
Test #48:
score: 0
Accepted
time: 163ms
memory: 29140kb
input:
800000 452584216 922884157 457016389 40191615 541267135 947490269 900953178 784029360 473550884 368219633 128951937 356906008 193915529 753085777 73540235 582645630 25564006 145574750 221031041 782127628 202616412 683241591 515050143 344401923 92110669 153190440 767616743 12663196 817130062 97449849...
output:
51181
result:
ok 1 queries
Test #49:
score: 0
Accepted
time: 84ms
memory: 26404kb
input:
1 693086739 667763491 300000 852876012 399679873 98139376 514550845 629716446 118469668 422688498 675874478 191667130 784447016 910409525 191474380 733775741 334768736 577278115 159083409 942644283 632600216 227316798 70214581 217095745 317102913 744033805 549805139 573318369 63393487 979854392 9169...
output:
1 -1 1 1 1 1 1 -1 -1 -1 -1 -1 -1 1 -1 -1 -1 -1 -1 1 1 1 -1 -1 -1 1 1 -1 -1 1 -1 1 -1 -1 1 -1 1 -1 1 -1 -1 1 -1 1 1 -1 -1 -1 -1 -1 -1 -1 1 -1 1 1 -1 -1 -1 1 -1 -1 -1 -1 -1 -1 -1 1 1 -1 -1 -1 -1 1 -1 1 1 -1 1 -1 -1 1 1 -1 -1 -1 -1 1 -1 -1 -1 -1 -1 -1 -1 1 -1 -1 1 1 -1 1 1 -1 -1 1 1 1 -1 -1 -1 -1 -1 1 ...
result:
ok 300000 queries
Test #50:
score: 0
Accepted
time: 1032ms
memory: 29200kb
input:
800000 41248511 34357201 574577849 454048096 517186397 457183807 950307677 118677109 884752946 293758867 523251953 457045759 40963937 26801584 830652521 355644061 44452118 79190785 210502025 386830117 660988142 440055658 856475984 329978251 886582946 291023758 40526786 5722294 45751877 90901372 1542...
output:
492466 21454 399390 161074 789169 299526 234291 299526 145669 808 771214 512536 261344 244362 156847 176722 147149 144070 323164 21454 156465 493896 568557 145669 808 299526 727200 515149 794666 299526 468202 568557 323164 322175 455884 743959 625679 299526 299526 261344 616089 468202 299526 442260 ...
result:
ok 300000 queries
Test #51:
score: 0
Accepted
time: 403ms
memory: 29292kb
input:
800000 632173228 91701637 346877067 4551964 458234225 149131846 357215851 68661617 652055837 24284057 352179990 51178978 636843939 82964895 347145301 12845078 354979892 61790667 361791238 80058138 593478354 130824625 368260289 92433013 359998066 75930841 600766613 126057656 644994608 61875640 597806...
output:
737966 737966 737966 737966 493098 737966 737966 737966 493098 737966 737966 493098 737966 737966 737966 737966 737966 737966 493098 737966 737966 493098 737966 737966 737966 737966 38198 493098 737966 493098 737966 737966 737966 737966 20014 737966 733886 159667 578048 737966 737966 737966 737966 7...
result:
ok 300000 queries
Test #52:
score: 0
Accepted
time: 1013ms
memory: 29292kb
input:
800000 65757188 62689869 269370626 139188157 955510583 26518114 885050060 97772881 496458959 152446911 52161959 44208254 803719241 125720052 165125090 117275485 383955854 149639430 679628288 145065526 446211764 151891384 55291808 49323469 669690275 145960450 951580034 36874392 922974215 73479708 124...
output:
351941 98905 766228 744901 766228 102721 260354 526444 703102 31595 697481 508980 594432 245833 579914 760246 517208 168574 87279 504733 83833 658730 17557 258582 703102 72716 201826 489506 258582 338570 443953 744901 347967 760246 368912 360756 408473 519397 368912 17557 17557 771374 4661 17557 658...
result:
ok 300000 queries
Test #53:
score: 0
Accepted
time: 655ms
memory: 29344kb
input:
800000 626237280 432349696 757003288 292641805 789494698 188072122 530105498 456180097 745028798 317009065 358140544 424528240 737435850 330335983 765006744 273409711 749242508 308949679 803641694 80019814 802061922 100008973 586576564 446588914 806114548 22337197 741009196 324243457 242852116 29231...
output:
758097 206012 315351 122315 122315 590841 688937 748419 486501 17595 116824 408556 122315 466104 9667 122315 122315 463856 298109 784943 758097 748419 688937 57079 298109 81822 411864 298109 748419 298109 487376 122315 349207 294561 122264 220922 122315 122315 122315 298109 122315 791587 114754 2981...
result:
ok 300000 queries
Test #54:
score: 0
Accepted
time: 1280ms
memory: 29164kb
input:
800000 834077927 353574577 845292725 342821431 179770262 365538184 41078210 31078891 501405284 458363770 154508981 342621811 99047747 268364593 98591429 267540160 153833189 341938897 71886272 207678379 349756385 443540857 957461744 58130191 518351111 458177836 911861876 247140037 427626734 455265973...
output:
257313 757331 257313 745574 720073 720073 315638 257313 257313 257313 757331 755992 720073 257313 257313 257313 703467 757331 757331 257313 755992 257313 417565 257313 417565 417565 269298 257313 269298 757331 257313 623577 417565 755992 257313 269298 257313 757331 315638 269298 118924 118924 720073...
result:
ok 300000 queries
Test #55:
score: 0
Accepted
time: 527ms
memory: 29284kb
input:
800000 407480143 131734528 652650345 16928867 612352630 116938859 359609733 75323895 646223710 57906840 511991534 152543911 644199740 64780746 570662214 141945763 386352125 115704752 349585185 37944390 507601730 152691542 573150238 141017833 416490931 136548124 597131713 128872230 347033667 10562730...
output:
485727 485727 485727 485727 485727 485727 242033 242033 699663 485727 794779 699663 794779 794779 699663 485727 251373 251373 485727 794779 699663 699663 485727 699663 485727 485727 485727 699663 485727 699663 485727 794779 699663 485727 485727 699663 485727 485727 699663 485727 699663 699663 699663...
result:
ok 300000 queries
Test #56:
score: 0
Accepted
time: 1226ms
memory: 29224kb
input:
800000 452109830 152349175 421461659 151562477 679460231 145420349 905086145 86902172 911099447 82911948 659512748 147141905 811841360 124054540 50505656 41502399 941064599 54843818 45837596 30876979 56107313 50885233 82921988 78562940 51926471 44130724 714515573 141637218 654484334 147531551 735109...
output:
166787 28424 28424 727049 166787 727049 686658 166787 166787 751875 727049 412527 497115 635094 686658 686658 162159 727049 727049 162159 28424 177905 727049 166787 56629 35106 56629 727049 727049 751875 28424 686658 412527 143941 28424 519976 162159 56629 635094 727049 686658 412527 56629 28424 284...
result:
ok 300000 queries
Test #57:
score: 0
Accepted
time: 810ms
memory: 29128kb
input:
800000 674001270 404386768 228695254 257093488 389105760 439754404 805760572 37898605 206735694 169104463 278383528 355075291 238806822 283935898 590873178 446404279 403785632 444803128 327998240 405933757 765596692 272894146 527142576 457420696 194319074 40442080 208239930 177472858 759287872 28844...
output:
70051 70051 70051 660170 620042 620042 780979 660170 93821 522687 70051 251436 660170 70051 338940 660170 660170 92100 70051 338940 70051 780979 70051 40692 70051 780979 679893 569144 522687 660170 338940 70051 660170 70051 660170 785590 679893 40692 251436 588867 251436 660170 660170 679893 620042 ...
result:
ok 300000 queries
Test #58:
score: 0
Accepted
time: 1465ms
memory: 29160kb
input:
800000 859533899 327603466 851289878 336683992 876400955 306639541 591665207 453328054 959458490 8337028 921461738 225310183 422223389 454818562 958886141 32083630 79088063 226664203 953797097 95653528 48485471 112129198 107408054 282698995 228135032 398545966 168306428 355789126 949788818 122848741...
output:
-1 -1 628786 425363 -1 43479 -1 -1 94145 348981 -1 663730 -1 515689 780158 -1 -1 129356 -1 466895 -1 -1 118786 416460 -1 347055 331187 -1 287157 -1 612268 42733 -1 -1 -1 155752 555622 633498 207209 413473 164320 -1 331363 126606 -1 -1 -1 293370 122209 275746 637169 174468 271456 -1 449204 676346 232...
result:
ok 300000 queries
Test #59:
score: 0
Accepted
time: 907ms
memory: 29284kb
input:
800000 562323617 144714102 519118500 152170180 420817041 138559378 637109217 82772283 625699939 101897203 364847052 86683695 467069436 150816840 616415019 112944366 364663264 86330245 374592794 102293891 456788435 149234789 438903897 145075132 580187050 138113766 347406498 17842146 598689659 1278551...
output:
520211 81692 656591 -1 8596 -1 -1 322324 671267 240170 653988 -1 186790 45678 -1 410267 247862 -1 -1 771819 432372 -1 -1 -1 -1 171218 -1 -1 -1 -1 -1 95410 662169 506322 -1 -1 75088 670737 253959 223058 -1 -1 71576 432471 149097 -1 771669 53016 -1 381482 -1 350304 525953 -1 -1 -1 -1 783582 791699 -1 ...
result:
ok 300000 queries
Test #60:
score: 0
Accepted
time: 1469ms
memory: 29160kb
input:
800000 942756512 52543924 44606774 27253318 536381699 152557131 43053236 21652509 908162630 84923465 932345795 65063433 955505426 26892791 184184135 123045270 50861096 42198411 874591718 103020582 129816644 104926195 137604293 108095080 197493518 126366707 900724946 89610039 227731463 132772548 8126...
output:
4411 778200 471585 594592 476392 659458 -1 -1 72755 732976 566755 44062 295553 -1 748218 180738 785560 629341 -1 691647 -1 220341 -1 -1 -1 297571 -1 200730 507169 -1 -1 -1 327312 -1 -1 300045 120889 704921 -1 -1 174161 -1 432406 -1 -1 47829 370200 526917 -1 119722 500523 -1 696752 679796 -1 -1 23831...
result:
ok 300000 queries
Test #61:
score: 0
Accepted
time: 1229ms
memory: 29200kb
input:
800000 795839484 153301438 429074202 451427452 443716494 454140505 498466270 458418625 770201744 260350057 196131196 77723965 294429446 374847478 793911864 165371065 738981738 328811518 436369790 452872345 244166796 296308363 195403854 65605399 510419398 458286268 311913826 392521549 281041900 35866...
output:
730419 -1 664866 -1 122704 -1 -1 -1 75622 -1 -1 597118 622634 165027 618897 -1 -1 -1 -1 493157 425417 -1 -1 -1 264570 245144 686959 -1 -1 773229 -1 489627 184970 -1 55353 421000 -1 684697 720163 34840 418334 429292 -1 93544 -1 -1 -1 -1 -1 -1 -1 612043 -1 380607 435643 -1 -1 597257 546540 548626 1043...
result:
ok 300000 queries
Extra Test:
score: 0
Extra Test Passed