QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#119554 | #6669. Mapa | hos_lyric# | 0 | 1ms | 4144kb | C++14 | 4.8kb | 2023-07-05 12:31:48 | 2024-07-04 00:17:50 |
Judging History
answer
#include <cassert>
#include <cmath>
#include <cstdint>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <algorithm>
#include <bitset>
#include <complex>
#include <deque>
#include <functional>
#include <iostream>
#include <limits>
#include <map>
#include <numeric>
#include <queue>
#include <set>
#include <sstream>
#include <string>
#include <unordered_map>
#include <unordered_set>
#include <utility>
#include <vector>
using namespace std;
using Int = long long;
template <class T1, class T2> ostream &operator<<(ostream &os, const pair<T1, T2> &a) { return os << "(" << a.first << ", " << a.second << ")"; };
template <class T> ostream &operator<<(ostream &os, const vector<T> &as) { const int sz = as.size(); os << "["; for (int i = 0; i < sz; ++i) { if (i >= 256) { os << ", ..."; break; } if (i > 0) { os << ", "; } os << as[i]; } return os << "]"; }
template <class T> void pv(T a, T b) { for (T i = a; i != b; ++i) cerr << *i << " "; cerr << endl; }
template <class T> bool chmin(T &t, const T &f) { if (t > f) { t = f; return true; } return false; }
template <class T> bool chmax(T &t, const T &f) { if (t < f) { t = f; return true; } return false; }
constexpr int MO = 131071;
int myhash(int x) {
x = (20230705LL * x) % 1'000'000'403;
return x % MO;
}
constexpr int E = 30;
constexpr int F = 17;
constexpr int G = 4;
constexpr int M0 = 150;
string toBinary(int len, int x) {
string s(len, '?');
for (int e = 0; e < len; ++e) s[e] = "01"[x >> e & 1];
return s;
}
int fromBinary(const string &s) {
const int len = s.size();
int x = 0;
for (int e = 0; e < len; ++e) x |= (s[e] - '0') << e;
return x;
}
string encode(int N, const vector<int> &X, const vector<int> &Y) {
vector<int> H(N);
for (int i = 0; i < N; ++i) {
H[i] = myhash(X[i]);
}
int minCost = 1001001001;
int am = -1;
for (int a = 0; a < 1 << G; ++a) {
const int M = M0 + a;
vector<int> freq(M);
for (int i = 0; i < N; ++i) {
++freq[H[i] % M];
}
int cost = M;
for (int m = 0; m < M; ++m) {
cost += F * max(freq[m] - 1, 0);
}
cerr<<"M = "<<M<<": cost = "<<cost<<endl;
if (chmin(minCost, cost)) {
am = a;
}
}
const int M = M0 + am;
vector<vector<pair<int, int>>> hiss(M);
for (int i = 0; i < N; ++i) {
hiss[H[i] % M].emplace_back(H[i], i);
}
for (int m = 0; m < M; ++m) {
auto &his = hiss[m];
sort(his.begin(), his.end());
}
// cerr<<"hiss = "<<hiss<<endl;
string S;
S += toBinary(G, am);
for (int m = 0; m < M; ++m) {
const auto &his = hiss[m];
for (const auto &hi : his) {
const int i = hi.second;
S += toBinary(E, Y[i]);
}
}
for (int m = 0; m < M; ++m) {
const auto &his = hiss[m];
S += (!his.empty()) ? '1' : '0';
}
for (int m = 0; m < M; ++m) {
const auto &his = hiss[m];
for (int j = 1; j < (int)his.size(); ++j) {
S += toBinary(F, his[j].first);
}
}
return S;
}
vector<int> decode(int N, int Q, int K, const string &S, const vector<int> &Z) {
int M;
map<int, int> mapa, nazo;
{
int cur = 0;
const int am = fromBinary(S.substr(cur, G)); cur += G;
M = M0 + am;
vector<int> Y(N);
for (int i = 0; i < N; ++i) {
Y[i] = fromBinary(S.substr(cur, E)); cur += E;
}
vector<vector<int>> hss(M);
for (int m = 0; m < M; ++m) {
const char any = S[cur++];
if (any != '0') {
hss[m].push_back(-1);
}
}
for (; cur < K; ) {
const int h = fromBinary(S.substr(cur, F)); cur += F;
hss[h % M].push_back(h);
}
// cerr<<"hss = "<<hss<<endl;
{
int i = 0;
for (int m = 0; m < M; ++m) {
for (const int h : hss[m]) {
const int y = Y[i++];
if (~h) {
mapa[h] = y;
} else {
nazo[m] = y;
}
}
}
}
assert(cur == K);
}
vector<int> ans(Q);
for (int q = 0; q < Q; ++q) {
const int h = myhash(Z[q]);
auto it = mapa.find(h);
if (it != mapa.end()) {
ans[q] = it->second;
} else {
ans[q] = nazo[h % M];
}
}
return ans;
}
int main() {
int T;
scanf("%d", &T);
if (T == 1) {
int N;
scanf("%d", &N);
vector<int> X(N), Y(N);
for (int i = 0; i < N; ++i) {
scanf("%d%d", &X[i], &Y[i]);
}
const string S = encode(N, X, Y);
const int K = S.size();
printf("%d\n", K);
puts(S.c_str());
} else {
int N, Q, K;
scanf("%d%d%d", &N, &Q, &K);
char buf[6010];
scanf("%s", buf);
const string S = buf;
vector<int> Z(Q);
for (int q = 0; q < Q; ++q) {
scanf("%d", &Z[q]);
}
const auto ans = decode(N, Q, K, S, Z);
for (int q = 0; q < Q; ++q) {
printf("%d\n", ans[q]);
}
}
return 0;
}
详细
Subtask #1:
score: 0
Wrong Answer
Test #1:
score: 82.4
Acceptable Answer
time: 1ms = 1ms + 0ms
memory: 3840kb,3840kb
input:
1 100 495528311 963488152 269613430 443544124 700489871 792354118 151890319 506569919 180452297 13229948 684464994 543841485 978085128 903812192 238355172 441140842 28061035 783291471 530823766 718942732 936853023 439421263 201361623 226633955 304644844 778868118 864860135 461524170 88300500 6959354...
output:
3528 0000100001111010111011011110000101011010111110001010011011110110011111101111010110001100001100101000000110010010001011011010101110010111010000001001000011001111101111101110010011000000000110001010101100010001010011100100101111001000101011011101001000011011000011000010000001111100100010100000001...
input:
2 100 79 3528 0000100001111010111011011110000101011010111110001010011011110110011111101111010110001100001100101000000110010010001011011010101110010111010000001001000011001111101111101110010011000000000110001010101100010001010011100100101111001000101011011101001000011011000011000010000001111100100010...
output:
310305144 821194635 174780370 903812192 805026231 996046536 439421263 645287342 90686849 20101025 440972097 543841485 176553522 249563964 461524170 348624865 848301562 506569919 306718453 206848250 382805509 278712030 964702808 868944393 493895143 39665197 574757075 441140842 785665865 229376884 551...
result:
points 0.8240 ok K = 3528
Test #2:
score: 83.0667
Acceptable Answer
time: 1ms = 1ms + 0ms
memory: 4100kb,3836kb
input:
1 100 743248071 842720888 367650901 130970775 297946283 705168964 771526942 537186020 245003150 707948455 643491261 668001146 311535032 293708068 183828318 18515526 593973840 915870006 102456762 64193833 729806890 839221652 47145974 35682954 668676377 228428310 370700393 569441954 250911162 48980047...
output:
3508 0111001011010111101100000101100010111010111000011001011000000011101010000101010010011010110001001010011000000110100000010011110100101010001100001000000100100110111100100001011010001001110111110101101010111000000011001110110110110001110010110010010111101100011100001011111001011011010111101000001...
input:
2 100 79 3508 0111001011010111101100000101100010111010111000011001011000000011101010000101010010011010110001001010011000000110100000010011110100101010001100001000000100100110111100100001011010001001110111110101101010111000000011001110110110110001110010110010010111101100011100001011111001011011010111...
output:
442563406 97578442 469403815 293708068 138158276 720700065 839221652 674386240 810209830 563527225 259979005 668001146 813899310 943777483 569441954 226088806 825435650 537186020 131383422 83733737 830289758 425793016 858146541 609883097 414389335 407054915 47572024 18515526 276587480 810627636 4972...
result:
points 0.83066666670 ok K = 3508
Test #3:
score: 83.7
Acceptable Answer
time: 0ms = 0ms + 0ms
memory: 4132kb,3836kb
input:
1 100 770174568 168127255 893508708 185778664 976425263 477317099 287595878 512153851 621600374 418802856 818787535 612197605 796811122 566496677 789841517 873731343 43178468 619503942 597852289 471053284 66112404 635260765 158101403 199253397 680158192 123081916 626776438 29107026 721141470 5177084...
output:
3489 0011110010001000111011101001011011110100111101000001110010000101011110101000110010100100110111101010011011101000000111110100111101100000101100010100101001111010011100111000110011110100010001001011101010100001111000111100010100111000110100110001000001111000011110111001010001011000001111100001100...
input:
2 100 79 3489 0011110010001000111011101001011011110100111101000001110010000101011110101000110010100100110111101010011011101000000111110100111101100000101100010100101001111010011100111000110011110100010001001011101010100001111000111100010100111000110100110001000001111000011110111001010001011000001111...
output:
676203467 418593456 222540092 566496677 487711174 155177230 635260765 19655934 405420089 197948311 16997620 612197605 623431791 654167214 29107026 103769907 951695033 512153851 401411177 839097490 141196222 886472586 767476542 270436089 885084406 492744649 861074271 873731343 744691837 300804222 364...
result:
points 0.8370 ok K = 3489
Test #4:
score: 81.9333
Acceptable Answer
time: 1ms = 1ms + 0ms
memory: 3924kb,3836kb
input:
1 100 546594289 9670068 665528790 773039281 266567267 744830423 338924380 918542055 413001686 717894752 786408307 211692098 280986141 432842000 195582858 921321743 412109607 485887870 262421557 244551274 303481411 585109375 922835159 77375674 276669713 485047938 748493209 63888398 37129726 285918022...
output:
3542 0111111010011111111011100010110000010111100110000000110111100000010000100100001100001010010111011000010001001010010111100111111111101111000000000111010001110011010011101010100100100101011011100000111101101110010101101110111000100000011100001011101110101111100101000010000001000111100000010010101...
input:
2 100 79 3542 0111111010011111111011100010110000010111100110000000110111100000010000100100001100001010010111011000010001001010010111100111111111101111000000000111010001110011010011101010100100100101011011100000111101101110010101101110111000100000011100001011101110101111100101000010000001000111100000...
output:
43372101 204611063 352593757 432842000 142147490 891337416 585109375 743309504 647533065 464964608 876089821 211692098 955710889 971589766 63888398 781195091 748872098 918542055 738134414 271774069 559783342 631668225 32245370 502187994 978371138 563783889 900635155 921321743 760555399 270665755 276...
result:
points 0.81933333330 ok K = 3542
Test #5:
score: 82.6
Acceptable Answer
time: 0ms = 0ms + 0ms
memory: 3824kb,3832kb
input:
1 100 326454605 159474960 11647328 932941462 367166680 626258331 846588658 385992166 148602944 380296908 32123445 521548223 146657758 872883623 78417135 361494853 902204073 975297913 50096537 520296997 687284103 420187394 93781442 87808395 503014564 573344902 720903126 546124141 87676450 646360824 9...
output:
3522 1101110111101011100010010001101110010010011011111011100000010000111111011000110001101000111110011010010111000111011001111011000100110001110110110111110011001111010110101100010001111010001101010011011110101100100101011010000010010110111111000100101001000101101101110101011010011011100110101100011...
input:
2 100 79 3522 1101110111101011100010010001101110010010011011111011100000010000111111011000110001101000111110011010010111000111011001111011000100110001110110110111110011001111010110101100010001111010001101010011011110101100100101011010000010010110111111000100101001000101101101110101011010011011100110...
output:
744601533 267129639 871217352 872883623 255371549 162360942 420187394 62984915 242781986 691399852 480380990 521548223 206206675 214089065 546124141 380557861 669664079 385992166 150840342 413877880 634078816 965530575 770169571 451364705 804171981 524846617 166621075 361494853 603970305 891038427 6...
result:
points 0.8260 ok K = 3522
Test #6:
score: 84.9333
Acceptable Answer
time: 1ms = 1ms + 0ms
memory: 3848kb,3808kb
input:
1 100 64333280 212072142 621741906 581061751 485561139 692210649 992259436 287935018 247191279 473618369 757620730 140577613 737479792 180977604 404566245 999575096 265846881 11981569 207666352 505750476 304958822 388901054 389584560 428620342 171809402 115660346 324907936 144402645 844495803 791121...
output:
3452 1001001101111111000001000001111100001000001100100010100010001000011101000011011000000101011100000111111011000111100100111101110101100001100011001101100000010101011110000011111111110101100110011101010001000101100010011111101100101100001111101000100110001011111001110101101000111001001010101110111...
input:
2 100 79 3452 1001001101111111000001000001111100001000001100100010100010001000011101000011011000000101011100000111111011000111100100111101110101100001100011001101100000010101011110000011111111110101100110011101010001000101100010011111101100101100001111101000100110001011111001110101101000111001001010...
output:
925952390 770406569 77034978 180977604 957934192 99668862 388901054 858699296 371495636 28514411 68070922 140577613 781757001 847250666 144402645 346058199 267461021 287935018 989151756 348668969 556273495 997895853 95321369 938341707 276009971 101428817 899728485 999575096 385642796 181794009 75258...
result:
points 0.84933333330 ok K = 3452
Test #7:
score: 84.2333
Acceptable Answer
time: 1ms = 1ms + 0ms
memory: 4108kb,3780kb
input:
1 100 38589601 573023388 6635272 692946586 153397181 811034102 859889237 493892802 259205483 364719660 954343124 427626481 959173918 753851930 975496695 577574806 311830132 29056811 509015429 310443549 588209966 697904208 31314024 836756664 249907127 458343750 355938610 284261099 221528639 337802970...
output:
3473 1011001010101000001001100101000100010110011110100111011011010100000010100011010010011001100101000100101111100000001111010111001001010100101000011011001011100011101111000011011000010100000001000110100000101111101100000111001100111101000101010010100011110001100010011011010000101000111101100001011...
input:
2 100 79 3473 1011001010101000001001100101000100010110011110100111011011010100000010100011010010011001100101000100101111100000001111010111001001010100101000011011001011100011101111000011011000010100000001000110100000101111101100000111001100111101000101010010100011110001100010011011010000101000111101...
output:
230017218 565349569 47782129 753851930 678112683 647428660 697904208 283703409 312668984 173256201 644234813 427626481 304813844 912323446 284261099 886592164 929134689 493892802 555567576 65699189 645479813 694103982 65190925 671520247 354050416 976551128 738019464 577574806 813237436 891060967 888...
result:
points 0.84233333330 ok K = 3473
Test #8:
score: 84
Acceptable Answer
time: 0ms = 0ms + 0ms
memory: 4100kb,3832kb
input:
1 100 608812690 879292074 479028197 788306143 615995302 841820438 145257256 962764296 602711633 995581697 898256936 448106429 760128150 867194906 843820112 719060821 156799570 629004151 556234422 563271562 355032462 28734192 691911457 345245685 868932163 940932744 589136297 140594459 605248500 81637...
output:
3480 1100110101010011111000110110101011111000110100101010101101101010011110010100100111101111100010100110100110101111101101011001101001100101101001011100000110010111011100111100010101000011010100011110101101001001100001100110000100100000100111111100011101001100001010000000110111100100010101100011011...
input:
2 100 79 3480 1100110101010011111000110110101011111000110100101010101101101010011110010100100111101111100010100110100110101111101101011001101001100101101001011100000110010111011100111100010101000011010100011110101101001001100001100110000100100000100111111100011101001100001010000000110111100100010101...
output:
500331265 566760896 580044819 867194906 560949333 9781752 28734192 263251739 247143049 846291006 332847217 448106429 266605081 382040161 140594459 32445827 364204743 962764296 647363961 549897822 266248054 819012425 609835929 951476639 538336120 158314822 355385207 719060821 493794877 696188978 3014...
result:
points 0.840 ok K = 3480
Test #9:
score: 82.2333
Acceptable Answer
time: 1ms = 1ms + 0ms
memory: 3848kb,4124kb
input:
1 100 221411475 163696773 580081552 897674994 529495152 42484057 439934490 746227851 716122469 137572309 850797298 158711960 820091048 515476547 797154090 246166696 923505280 368103965 246035210 308696941 613434683 955145371 875043135 212559533 205331778 121889189 468477922 194020296 861623799 72521...
output:
3533 1010101010011011101011011101110001000110010000001110101110100100001101111101010000101110100101011011101010010111001110001110101101101110101001100110010010000000111110111110011100110101011100001001010001100011101010010001011011010011110000000001010011110111011010000001101011110110010011101001110...
input:
2 100 79 3533 1010101010011011101011011101110001000110010000001110101110100100001101111101010000101110100101011011101010010111001110001110101101101110101001100110010010000000111110111110011100110101011100001001010001100011101010010001011011010011110000000001010011110111011010000001101011110110010011...
output:
447518344 20372800 820057525 515476547 929148550 975667875 955145371 710181675 270693487 815249231 444426161 158711960 978716476 472823181 194020296 768850245 118243886 746227851 939771652 880147346 23021000 674514174 170878417 120543464 688090699 772795972 659239901 246166696 22324283 62945716 4424...
result:
points 0.82233333330 ok K = 3533
Test #10:
score: 84.1667
Acceptable Answer
time: 0ms = 0ms + 0ms
memory: 4128kb,3832kb
input:
1 100 19599769 503599235 607852146 743568370 186281835 152620298 14504908 481672793 781288195 362834688 151340700 673227358 631578327 616559846 162406965 868151253 654902334 704640894 506151846 36830214 260055673 991685781 541724792 551734837 725627458 660315138 732278528 433696372 325821250 4876257...
output:
3475 1111111011011001110110010100110010010000000011100111011010111001110110101101101011010001100111100100111011100001001110111001110011001010010011010011111101101101100111100010000011100001101001110110000100110011001110000001111011100000001111111101101011011011110110111111110101100101100110001001010...
input:
2 100 79 3475 1111111011011001110110010100110010010000000011100111011010111001110110101101101011010001100111100100111011100001001110111001110011001010010011010011111101101101100111100010000011100001101001110110000100110011001110000001111011100000001111111101101011011011110110111111110101100101100110...
output:
17522166 203911209 128873662 616559846 5724752 637807633 991685781 667107960 23742057 733808995 34061776 673227358 76723239 80053091 433696372 302174338 804265440 481672793 129338272 820651206 457529317 578437883 142129496 92873118 115024862 323981695 456071005 868151253 79539206 533123847 250920833...
result:
points 0.84166666670 ok K = 3475
Test #11:
score: 83.1333
Acceptable Answer
time: 0ms = 0ms + 0ms
memory: 4144kb,3916kb
input:
1 100 754728080 615034506 278142947 739166255 431557648 213650106 801076937 12302465 390056764 405912325 958010191 972296266 618096674 290293214 816072144 822111433 114390542 264666411 362376476 262284198 397871046 932447079 740458746 280549044 401344771 621570565 158481121 162119017 575252154 10877...
output:
3506 0011101110011101001110011001101101110110110000111010101011011000001010000111000011011011111011000101100010110100010000100001010101101111101011010000000000110111011011001010001001100001010100100000100000101111100111111100000010101010110100100001111111010111110100111101111100000101110110101000000...
input:
2 100 79 3506 0011101110011101001110011001101101110110110000111010101011011000001010000111000011011011111011000101100010110100010000100001010101101111101011010000000000110111011011001010001001100001010100100000100000101111100111111100000010101010110100100001111111010111110100111101111100000101110110...
output:
956707937 764151542 425056403 290293214 904945055 569744963 932447079 578669827 615355462 437815230 175380679 972296266 707177724 779023842 162119017 102160143 489008046 12302465 71297359 937102868 844790648 930068047 918051016 375684910 653833961 85896778 97899197 822111433 333928660 394182386 2979...
result:
points 0.83133333330 ok K = 3506
Test #12:
score: 84.7333
Acceptable Answer
time: 1ms = 1ms + 0ms
memory: 3824kb,4136kb
input:
1 100 651602369 609971562 405806520 338858725 82461387 773296498 370394604 205907118 83229151 915559769 402520445 634368224 295827147 51732839 850231879 473145268 91650669 793908439 989299809 96921178 907891317 791908538 221803027 446090649 124079152 603405537 739157248 694680954 704470038 219741129...
output:
3458 1111100100101010101001011011110010001011101100010011101011110011011011000001110101001100111101110011101100011010100100111011110010001101001000111000001101101001110100100101001100001010001011011111100111001100001110010100000001010101100111101110100001110011110011101111110001011101010010011110100...
input:
2 100 79 3458 1111100100101010101001011011110010001011101100010011101011110011011011000001110101001100111101110011101100011010100100111011110010001101001000111000001101101001110100100101001100001010001011011111100111001100001110010100000001010101100111101110100001110011110011101111110001011101010010...
output:
304926408 871747385 695719855 51732839 30730873 858053531 791908538 890946266 742114626 147850369 963347495 634368224 56126240 294913872 694680954 413016011 3780006 205907118 980617161 660575727 27667900 592622098 681202212 760457383 415626677 428417886 570655471 473145268 966433960 923765677 553360...
result:
points 0.84733333330 ok K = 3458
Test #13:
score: 83.7333
Acceptable Answer
time: 0ms = 0ms + 0ms
memory: 3852kb,3832kb
input:
1 100 900905485 986849220 865890639 989219769 974980553 815503255 12084595 62574731 234049511 570118116 55567194 907451536 607443488 476001345 441446673 515273718 647029160 196634608 984700195 391421066 387033530 548761294 299636778 162002144 258531148 905788089 99288303 231936743 506688707 46687162...
output:
3488 1101000001010001011101111111001010100111010101110010111111101011011011110011001010010111100000001011010011110110000000011110011011111101010010100101011101000101110011000100110000101011101011101101001011011101111100110010111011011010100110000100000010010011100101101000011011001010100111111000111...
input:
2 100 79 3488 1101000001010001011101111111001010100111010101110010111111101011011011110011001010010111100000001011010011110110000000011110011011111101010010100101011101000101110011000100110000101011101011101101001011011101111100110010111011011010100110000100000010010011100101101000011011001010100111...
output:
806344887 664008030 73690163 476001345 211279038 879930441 548761294 308851136 443343152 782576630 352250016 907451536 584286144 374558469 231936743 760852838 985997701 62574731 372865777 828181419 656826593 577394566 759576483 515637769 769134727 778154760 263932789 515273718 69006606 294577561 498...
result:
points 0.83733333330 ok K = 3488
Test #14:
score: 83.9
Acceptable Answer
time: 1ms = 1ms + 0ms
memory: 3840kb,3828kb
input:
1 100 100175674 328715935 971481682 194132780 717666444 504666299 330362693 977581115 872779535 597235480 375783505 452186384 419400050 627221988 600872811 553467292 201684227 507815487 95388868 719860800 820903171 665851948 43416948 800556305 277069166 53288802 376279049 298221064 161791895 1888138...
output:
3483 0110111101110101000001111101100110010111001100101110010100100010000110111000100000101010101010001110011011110010111111000001100000011101011111011011110001001100000010011101001101001100101000111100000101000100000001000100111000011110111110000011101101111010010110001010100010110110010010110101011...
input:
2 100 79 3483 0110111101110101000001111101100110010111001100101110010100100010000110111000100000101010101010001110011011110010111111000001100000011101011111011011110001001100000010011101001101001100101000111100000101000100000001000100111000011110111110000011101101111010010110001010100010110110010010...
output:
656202152 38139659 986245811 627221988 262987141 41626531 665851948 721346847 18937813 662860631 348766134 452186384 952646508 719733063 298221064 310596719 287953722 977581115 980528425 123043074 740357729 215128353 275085455 357145189 231768137 968678053 431885039 553467292 654066409 991017403 592...
result:
points 0.8390 ok K = 3483
Test #15:
score: 83.7
Acceptable Answer
time: 1ms = 0ms + 1ms
memory: 3876kb,3836kb
input:
1 100 155759197 738116086 693067528 594897020 326890902 625583897 248669652 892268604 982863679 666422296 851843372 868420150 318485019 643582119 817328291 563713715 147817474 54748668 839462496 907507551 485479383 25930860 669573094 752904913 226916686 37390772 111822444 292076901 593570288 9599256...
output:
3489 0011001111010011000011101001000110011000011011000101111101100110111010011011011011011000011100001101011100000101000100100100100010001111110000100111001000001111111010011011000010110000001010011001100010111000100000001100011000100001100111101011101101110110010100010111000001110111101011011010110...
input:
2 100 79 3489 0011001111010011000011101001000110011000011011000101111101100110111010011011011011011000011100001101011100000101000100100100100010001111110000100111001000001111111010011011000010110000001010011001100010111000100000001100011000100001100111101011101101110110010100010111000001110111101011...
output:
237700952 431918470 552117997 643582119 179644804 592543520 25930860 71700147 515536454 240714551 904270220 868420150 409900083 236315209 292076901 682237796 969917168 892268604 730750810 677248102 964094246 746774159 915185427 483386475 303613984 892436193 535058636 563713715 208906352 365661664 70...
result:
points 0.8370 ok K = 3489
Test #16:
score: 83.8667
Acceptable Answer
time: 0ms = 0ms + 0ms
memory: 3856kb,4124kb
input:
1 100 528691319 91831880 386349345 731326576 21176008 940098540 325859753 762337780 713581844 897308394 774875332 625809049 252347069 294035274 623069253 468083716 648169883 510534328 99296629 772471648 385338480 58002281 223045398 430841708 313950768 22827747 173102112 767986059 540475972 562649334...
output:
3484 1110111100000101110010110010011110100000010101100110111100000100111000001101110110100100001100001011111001101000001110101101110010000001000011100001011010000001101101111101010000011101100110010110100010110010101001100101000100010101001101011110100010000010111000000101111101000000000010110111101...
input:
2 100 79 3484 1110111100000101110010110010011110100000010101100110111100000100111000001101110110100100001100001011111001101000001110101101110010000001000011100001011010000001101101111101010000011101100110010110100010110010101001100101000100010101001101011110100010000010111000000101111101000000000010...
output:
525791347 67606394 423041096 294035274 505042001 36069272 58002281 486356778 736546059 708625946 554916860 625809049 239334507 588411226 767986059 447213639 540326718 762337780 504417370 41031618 377948179 599950989 278829818 167509922 486272562 158889968 701081566 468083716 585296033 674626268 7669...
result:
points 0.83866666670 ok K = 3484
Test #17:
score: 81.4333
Acceptable Answer
time: 0ms = 0ms + 0ms
memory: 3848kb,4128kb
input:
1 100 670714199 899616316 329702868 22625676 609441993 414274788 231301804 982523317 499797027 829951970 554440084 606392830 416502025 91330445 765840045 291414099 955527229 697408403 468888699 842546173 140134565 404507934 469199432 692339096 392093128 681468648 224453201 253441757 536866309 687113...
output:
3557 0011011010001111111010111100100001001001110010101010001101000110110110101111110111100000100001110111011111100111011111101100101001111000100010100111110011011100110100000001100010111011001001010010100000101100001010101011100010001100110000010010101010010010011011010000100100110001001010110010100...
input:
2 100 79 3557 0011011010001111111010111100100001001001110010101010001101000110110110101111110111100000100001110111011111100111011111101100101001111000100010100111110011011100110100000001100010111011001001010010100000101100001010101011100010001100110000010010101010010010011011010000100100110001001010...
output:
242761459 143380783 210207234 91330445 429281488 593964600 404507934 994543054 389733156 263001270 548956961 606392830 332393935 547574592 253441757 463394561 905379537 982523317 900985807 641084668 253229006 698233960 999741433 286544104 597913890 717679349 758596846 291414099 465760688 831854537 3...
result:
points 0.81433333330 ok K = 3557
Test #18:
score: 82.4667
Acceptable Answer
time: 1ms = 0ms + 1ms
memory: 3848kb,3828kb
input:
1 100 275061606 289457664 693063527 749795396 795050156 134138686 981588711 937513908 429027101 860895914 674570083 891634484 550874890 279984285 582813425 847536233 321204048 609521529 291674417 859403227 725419330 333924634 132857229 577840142 557763992 970692209 811676515 114428543 101877420 3158...
output:
3526 1111100111100010111011001010100001001011010000011110110010101100011100000010010010001110010001001000100001111100001101001101110001101100100010111100100110101111110000100100011010101001010110001101111110001111100110110011000111101100001110001010010110100101011110110111001000111100110100000001111...
input:
2 100 79 3526 1111100111100010111011001010100001001011010000011110110010101100011100000010010010001110010001001000100001111100001101001101110001101100100010111100100110101111110000100100011010101001010110001101111110001111100110110011000111101100001110001010010110100101011110110111001000111100110100...
output:
382108052 879750157 37994005 279984285 580337233 18231300 333924634 234260705 715271084 344172931 938975031 891634484 144724709 373096103 114428543 956849472 342941235 937513908 479067941 598876546 9034105 41691365 182789857 131813075 579935334 765864325 601678407 847536233 328128741 947656737 10183...
result:
points 0.82466666670 ok K = 3526
Test #19:
score: 82
Acceptable Answer
time: 0ms = 0ms + 0ms
memory: 3900kb,3828kb
input:
1 100 470536077 756757121 698892841 113862517 391881103 169085283 574848268 834285768 83385059 209666273 443574343 389990921 771772748 681164066 330356183 577452798 715424487 88461370 302878747 916053614 615497987 409959796 116516935 580821406 983941553 319204899 451405325 262835243 98691093 4489770...
output:
3540 0011010101111111100111010110011001011101100111101110011001011011011110001010110111110111010110110000000000100000001111110010101011110001010111101011000011010011000110100100000001000111001111101011110000001000100000100001010111111100010101010111011110101011110011110101011101011110111000100001111...
input:
2 100 79 3540 0011010101111111100111010110011001011101100111101110011001011011011110001010110111110111010110110000000000100000001111110010101011110001010111101011000011010011000110100100000001000111001111101011110000001000100000100001010111111100010101010111011110101011110011110101011101011110111000...
output:
528747963 959190249 718941756 681164066 467466808 726056672 409959796 998200951 89671985 75316879 739174254 389990921 422960743 502293847 262835243 197165052 808221348 834285768 984153761 424350863 561256918 656088826 819439861 743282063 819577672 220146817 544150179 577452798 818978473 950820104 13...
result:
points 0.820 ok K = 3540
Test #20:
score: 82.2333
Acceptable Answer
time: 1ms = 1ms + 0ms
memory: 3852kb,4136kb
input:
1 100 857972746 134585349 760010510 2409930 829735729 992224127 440669822 213659303 885149400 813615513 56577893 296741031 868626948 249885189 796120839 848097683 319287857 593262418 113573269 310951877 159423015 689854466 604382512 678191352 662333203 970475275 41537552 369712985 896091462 80987399...
output:
3533 1010001000010010110011001100110000000101000110110111111000011100101011111000101111000110100010101110001100110000010110111010000110011010100101111101010011011000100110110101101010000111100100001011111010011101101011100111000110011111010001110101010000011001110011110101111011011111110100010101101...
input:
2 100 79 3533 1010001000010010110011001100110000000101000110110111111000011100101011111000101111000110100010101110001100110000010110111010000110011010100101111101010011011000100110110101101010000111100100001011111010011101101011100111000110011111010001110101010000011001110011110101111011011111110100...
output:
804546071 438874305 438151180 249885189 401629802 750923475 689854466 301429802 387560367 155851954 6936429 296741031 730588729 641027582 369712985 853514377 442079545 213659303 629911625 116708306 685696220 822079954 658493553 291754485 411862892 377892525 901098253 848097683 101876279 829010531 42...
result:
points 0.82233333330 ok K = 3533
Test #21:
score: 82.6333
Acceptable Answer
time: 1ms = 1ms + 0ms
memory: 3876kb,4088kb
input:
1 100 338282351 535547274 750971852 174091841 561253347 576036946 56873245 859929495 969725293 454521472 369256223 469692455 764245447 421478570 69490101 484398194 511848702 543549274 795380426 373214417 703131114 43647426 470419094 661670484 888281054 847964250 582810624 530062905 9858387 17503621 ...
output:
3521 0101101111001010011011101010110000110100010110011001001100011001111001110010000100000011011110100101011110000101011000101110011101111101101111101100001010001110100100001001100110101000100000100111011000000110010100000000111100100010000111001101101000001101010110001111110001111011101001001111111...
input:
2 100 79 3521 0101101111001010011011101010110000110100010110011001001100011001111001110010000100000011011110100101011110000101011000101110011101111101101111101100001010001110100100001001100110101000100000100111011000000110010100000000111100100010000111001101101000001101010110001111110001111011101001...
output:
224507328 770100728 519728537 421478570 118701838 90587740 43647426 704195951 382793454 96937647 813071399 469692455 956946168 981902632 530062905 910982983 829361117 859929495 605032370 744119805 488026834 603040517 420827981 488277929 504604368 932579570 161296202 484398194 10047192 920152901 1051...
result:
points 0.82633333330 ok K = 3521
Test #22:
score: 83.2
Acceptable Answer
time: 1ms = 1ms + 0ms
memory: 4136kb,3780kb
input:
1 100 130346006 891277451 885624488 257660768 148463654 540363656 110899930 346826439 698283177 665412444 994380771 198320684 778409823 541781037 745591948 343969889 919211689 712095403 601055685 905001997 358086203 837731489 672966517 216082867 24812745 420306523 57050251 310792238 247206563 475591...
output:
3504 0101011111010010100111100011000101111000110110010000110101001010110101010110110110001110010101001000101011101101000100111010011000110111010010111101101001101100110110001111001011100111101101101110111001100110010000010000100100111100000010011001101000110101001010100110100010101011100110011101000...
input:
2 100 79 3504 0101011111010010100111100011000101111000110110010000110101001010110101010110110110001110010101001000101011101101000100111010011000110111010010111101101001101100110110001111001011100111101101101110111001100110010000010000100100111100000010011001101000110101001010100110100010101011100110...
output:
656343932 684168382 769585519 541781037 468507179 735145247 837731489 583535496 684793051 634167649 525100749 198320684 439196264 262549584 310792238 268347712 771030767 346826439 466407071 404696628 739808802 917494906 43705634 458958901 632146165 417638157 84813667 343969889 798218178 614579243 64...
result:
points 0.8320 ok K = 3504
Test #23:
score: 83.2
Acceptable Answer
time: 1ms = 1ms + 0ms
memory: 4136kb,4124kb
input:
1 100 727353765 540226289 198728094 766386773 357131756 478519307 988591322 666204558 622299099 662757533 526181560 633002809 768119020 439579332 304399500 927131671 54245905 582897180 437454576 979186091 167429496 970050114 517098789 559461657 368905545 99338682 33385857 931761781 68394178 77881384...
output:
3504 0101110100001001010011010010100111000111010001101000010101100010010100000100110001110101111110010011101110100101010110000001000101100100110011100011110100111110001000101101001000100000100110000110010100010001001100000111010011011000101001000000100011000110111100001011011000001111000000111110000...
input:
2 100 79 3504 0101110100001001010011010010100111000111010001101000010101100010010100000100110001110101111110010011101110100101010110000001000101100100110011100011110100111110001000101101001000100000100110000110010100010001001100000111010011011000101001000000100011000110111100001011011000001111000000...
output:
637707074 926530 819970639 439579332 968299971 694485705 970050114 210282009 993494804 971480757 689839964 633002809 809612133 875781636 931761781 114357809 426541289 666204558 360491482 232189192 455981622 14973200 829830701 691605944 296245432 645800065 518516007 927131671 472579938 459967353 5315...
result:
points 0.8320 ok K = 3504
Test #24:
score: 83.7667
Acceptable Answer
time: 1ms = 1ms + 0ms
memory: 3844kb,4120kb
input:
1 100 516669880 692841746 537032986 548707172 768481811 330616621 565529569 204235345 568604397 276406459 531260376 966386991 470728934 288381852 736546167 435216158 101516449 464172040 625913894 488536307 116887383 347627700 758664574 131095502 389606580 84082160 373851139 353684419 794964985 82206...
output:
3487 0101111010000110101000010101101101001101010101110111000000010100011010111101111110010101010010111111111111111011011100111000111001000010011011010010100010100000110011000001001000101110101101111010110010100000000111011100110101010110001111000100000001111001010001100101001101101011011110000010110...
input:
2 100 79 3487 0101111010000110101000010101101101001101010101110111000000010100011010111101111110010101010010111111111111111011011100111000111001000010011011010010100010100000110011000001001000101110101101111010110010100000000111011100110101010110001111000100000001111001010001100101001101101011011110...
output:
824265694 823080244 799670389 288381852 169933132 403273887 347627700 448695924 131314426 313129942 213235568 966386991 612384921 431273645 353684419 940366236 412241121 204235345 686356384 543442146 379280891 109609808 975619138 944832568 775109683 613502168 617479713 435216158 666549936 277678005 ...
result:
points 0.83766666670 ok K = 3487
Test #25:
score: 82.4
Acceptable Answer
time: 1ms = 1ms + 0ms
memory: 4080kb,4092kb
input:
1 100 372104321 661333761 926919776 579976882 403232435 494262953 446358648 437141002 47453478 652538571 500378800 637915335 236300111 106901258 116478562 352343485 519690966 510494272 884586941 748751699 589183960 469068835 309223864 294984914 276227690 364108467 922165060 297950392 45400397 686943...
output:
3528 0000001110110000010001101000001101000010101001011111001010110111110101000011010101010010001000111110011010010100001011011101110010010011101101110000111110101111111110100011101010011101100110101000011001100001101001000000001100101001000000111010000010101010100011001011100001010101000001000011001...
input:
2 100 79 3528 0000001110110000010001101000001101000010101001011111001010110111110101000011010101010010001000111110011010010100001011011101110010010011101101110000111110101111111110100011101010011101100110101000011001100001101001000000001100101001000000111010000010101010100011001011100001010101000001...
output:
749880619 80543316 586138899 106901258 219907616 408787218 469068835 396524270 333555991 531826730 918802316 637915335 140716275 194883708 297950392 85568567 521067667 437141002 647729371 523149256 335538435 853017270 931231977 648867380 360880023 435128215 632685180 352343485 133234415 605658882 67...
result:
points 0.8240 ok K = 3528
Test #26:
score: 84.1667
Acceptable Answer
time: 1ms = 1ms + 0ms
memory: 3844kb,3836kb
input:
1 100 771595997 319786827 412811499 817307270 738505239 885061434 985904063 437562537 445352259 411925181 123822945 823894119 888835788 999087562 646220704 82172817 81547928 89237739 599934026 710756331 6101115 374839154 361877824 345100503 149063202 933188075 703658682 691533365 158847800 107227001...
output:
3475 1111100000101010101011100110001100111000001111010110110111100111101011001111010010111110001001001010000101011111110101000100000010111010000000100101000000110000010010011010011110100101100110111010111100110100110000001100001111111111101001011110100010011101101110100111001000101101100000010111011...
input:
2 100 79 3475 1111100000101010101011100110001100111000001111010110110111100111101011001111010010111110001001001010000101011111110101000100000010111010000000100101000000110000010010011010011110100101100110111010111100110100110000001100001111111111101001011110100010011101101110100111001000101101100000...
output:
765552682 786058369 301260795 999087562 612183861 193509014 374839154 507856834 741140138 286118761 208098625 823894119 870326141 644082047 691533365 575204482 824337497 437562537 896172427 445148558 118382861 878135225 407536487 510560011 535710878 111854461 10749392 82172817 107651473 954777140 40...
result:
points 0.84166666670 ok K = 3475
Test #27:
score: 84.0333
Acceptable Answer
time: 1ms = 1ms + 0ms
memory: 4096kb,4096kb
input:
1 100 206035075 511295878 943493371 350467904 992398940 364769667 189487358 350467904 770852642 511295878 696317149 511295878 211799514 747768455 687279973 364769667 991712428 350467904 742823341 350467904 560412664 747768455 552146681 747768455 201447729 249391801 68952867 249391801 324496155 36476...
output:
3479 0100110000011000111110111101101010011000011000001110011110011110100111010101011010111011011100111000010101000001001001001101110000011000111110111101101010110000011000111110111101101010110000011000111110111101101010000000101110110111000111001010111000010101000001001001001101100111010101011010111...
input:
2 100 79 3479 0100110000011000111110111101101010011000011000001110011110011110100111010101011010111011011100111000010101000001001001001101110000011000111110111101101010110000011000111110111101101010110000011000111110111101101010000000101110110111000111001010111000010101000001001001001101100111010101...
output:
249391801 249391801 747768455 747768455 249391801 249391801 747768455 249391801 364769667 747768455 364769667 511295878 511295878 747768455 249391801 511295878 747768455 350467904 249391801 364769667 511295878 511295878 350467904 249391801 249391801 511295878 249391801 364769667 747768455 350467904 ...
result:
points 0.84033333330 ok K = 3479
Test #28:
score: 82.6333
Acceptable Answer
time: 1ms = 1ms + 0ms
memory: 3836kb,3832kb
input:
1 100 38846592 590301525 766125667 583955748 147163223 473282891 47853599 84365741 966765100 84365741 767572143 473282891 112595241 473282891 102598295 84365741 855963947 583955748 970219272 473282891 580798626 729529201 969377524 729529201 28800277 583955748 103065213 84365741 964977691 583955748 3...
output:
3521 0101110100101001110110101100001110101101011000101011100000101000101101011000101011100000101000100011101101110111011110110101001001001010111001110011010001101101011000101011100000101000001001001010111001110011010001100011101101110111011110110101001001001010111001110011010001101010101001001011110...
input:
2 100 79 3521 0101110100101001110110101100001110101101011000101011100000101000101101011000101011100000101000100011101101110111011110110101001001001010111001110011010001101101011000101011100000101000001001001010111001110011010001100011101101110111011110110101001001001010111001110011010001101010101001...
output:
729529201 84365741 729529201 473282891 583955748 590301525 729529201 583955748 583955748 729529201 583955748 473282891 729529201 590301525 84365741 84365741 729529201 84365741 590301525 729529201 729529201 84365741 583955748 84365741 473282891 729529201 590301525 84365741 84365741 583955748 72952920...
result:
points 0.82633333330 ok K = 3521
Test #29:
score: 0
Wrong Answer
time: 1ms = 1ms + 0ms
memory: 3844kb,4092kb
input:
1 100 477271109 449442777 446718189 276977366 466140087 216878887 784932585 449442777 479123602 276977366 630426762 216878887 239787459 449442777 634896974 449442777 708961222 449442777 842146301 54046568 656380589 276977366 528549690 54046568 68980391 54046568 18291326 276977366 807959596 276977366...
output:
3515 0010000101101111010100011100110000001010000111010101001110011100000101101111010100011100110000111001001111001010110111001100111001001111001010110111001100100110111100111110010011010110111001001111001010110111001100011010110110101001000001000010011010110110101001000001000010000101101111010100011...
input:
2 100 79 3515 0010000101101111010100011100110000001010000111010101001110011100000101101111010100011100110000111001001111001010110111001100111001001111001010110111001100100110111100111110010011010110111001001111001010110111001100011010110110101001000001000010011010110110101001000001000010000101101111...
output:
276977366 449442777 449442777 449442777 449442777 242396692 276977366 242396692 54046568 54046568 216878887 216878887 449442777 54046568 276977366 276977366 54046568 449442777 54046568 449442777 242396692 242396692 54046568 242396692 216878887 242396692 242396692 449442777 216878887 216878887 449442...
result:
wrong answer wrong answer on query #68: read 449442777 but expected 276977366