QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#119299#6669. Mapahos_lyric#0 2ms4132kbC++142.9kb2023-07-05 09:58:432024-05-31 19:05:16

Judging History

你现在查看的是最新测评结果

  • [2024-05-31 19:05:16]
  • 评测
  • 测评结果:0
  • 用时:2ms
  • 内存:4132kb
  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2023-07-05 09:58:43]
  • 提交

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 E = 30;
constexpr int F = 20;
constexpr int MO = 1048573;
int myhash(int x) {
  x = (20230705LL * x) % 1'000'000'403;
  return x % MO;
}

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) {
  string S = "";
  for (int i = 0; i < N; ++i) {
    S += toBinary(F, myhash(X[i]));
    S += toBinary(E, Y[i]);
  }
  return S;
}

vector<int> decode(int N, int Q, int K, const string &S, const vector<int> &Z) {
  map<int, int> mapa;
  {
    int pos = 0;
    for (int i = 0; i < N; ++i) {
      const int h = fromBinary(S.substr(pos, F)); pos += F;
      const int y = fromBinary(S.substr(pos, E)); pos += E;
      mapa[h] = y;
    }
  }
  vector<int> ans(Q);
  for (int q = 0; q < Q; ++q) {
    ans[q] = mapa[myhash(Z[q])];
  }
  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;
}

Details

Tip: Click on the bar to expand more detailed information

Subtask #1:

score: 0
Wrong Answer

Test #1:

score: 33.3333
Acceptable Answer
time: 2ms = 1ms + 1ms
memory: 4104kb,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:

5000
1011011010000001010000011001100101011011011010011100101101111010100111001111000100111111110110010110111101101111101011000110001010111010010111001111010101110110110001111011111101001001011000110001111001110110001101010011001111101111101110010011000000011100000111001001001011001100111010010101100...

input:

2
100 79 5000
1011011010000001010000011001100101011011011010011100101101111010100111001111000100111111110110010110111101101111101011000110001010111010010111001111010101110110110001111011111101001001011000110001111001110110001101010011001111101111101110010011000000011100000111001001001011001100111010...

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.33333333330 ok K = 5000

Test #2:

score: 33.3333
Acceptable Answer
time: 0ms = 0ms + 0ms
memory: 3904kb,3844kb

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:

5000
0100011100101010110100011110011001110101110001001101010110010110000111111010010010111001110011111000011011011011001010000010001001100000000100000101010010011000001111110100100111011100110010000000000110010011110010110100111001011111011001001100010101101111111100101100000101111011000111000010111...

input:

2
100 79 5000
0100011100101010110100011110011001110101110001001101010110010110000111111010010010111001110011111000011011011011001010000010001001100000000100000101010010011000001111110100100111011100110010000000000110010011110010110100111001011111011001001100010101101111111100101100000101111011000111...

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.33333333330 ok K = 5000

Test #3:

score: 33.3333
Acceptable Answer
time: 0ms = 0ms + 0ms
memory: 3920kb,3892kb

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:

5000
1000011010110110000011101000110101101010000001010011011111010011101001000101111000001101001000110100001110101110110110111101011111100010110011100011100101011100111011110011011111000110110110000101111001000101101101111101000101010011011001101111000110100110000001011100001010011100100110101111100...

input:

2
100 79 5000
1000011010110110000011101000110101101010000001010011011111010011101001000101111000001101001000110100001110101110110110111101011111100010110011100011100101011100111011110011011111000110110110000101111001000101101101111101000101010011011001101111000110100110000001011100001010011100100110...

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.33333333330 ok K = 5000

Test #4:

score: 33.3333
Acceptable Answer
time: 0ms = 0ms + 0ms
memory: 3840kb,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:

5000
0110111101101000111000101101101100011100100100000010000100010111111110100011010010010111001000011101111110111101001011011110101110101100101001100011011011111100101001111111100111011010111111110101101110011011000001100011000001100010110001010011010101100101111100001000100100001001010100011110010...

input:

2
100 79 5000
0110111101101000111000101101101100011100100100000010000100010111111110100011010010010111001000011101111110111101001011011110101110101100101001100011011011111100101001111111100111011010111111110101101110011011000001100011000001100010110001010011010101100101111100001000100100001001010100...

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.33333333330 ok K = 5000

Test #5:

score: 33.3333
Acceptable Answer
time: 2ms = 1ms + 1ms
memory: 3832kb,3848kb

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:

5000
0001001101100110110000001000101001101000000110010001000011101110001011011010010111000111011001111011110110001001000010011101100110001111110010101010011010000101111011110001100111101000111000000011101000111000101111000001001100110111101101010101011010010000000010000110001111110110001100011010001...

input:

2
100 79 5000
0001001101100110110000001000101001101000000110010001000011101110001011011010010111000111011001111011110110001001000010011101100110001111110010101010011010000101111011110001100111101000111000000011101000111000101111000001001100110111101101010101011010010000000010000110001111110110001100...

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.33333333330 ok K = 5000

Test #6:

score: 33.3333
Acceptable Answer
time: 0ms = 0ms + 0ms
memory: 3920kb,4132kb

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:

5000
1110100001010011011101110011011011111100010100110001000010110011001001111011100011001001000101010001100011100011101110101001101111010010010000101001011111000001101000001001010100010100011001010010001000011001110101010010100000111110101101011100001110010110010100000001001011001011010000100001100...

input:

2
100 79 5000
1110100001010011011101110011011011111100010100110001000010110011001001111011100011001001000101010001100011100011101110101001101111010010010000101001011111000001101000001001010100010100011001010010001000011001110101010010100000111110101101011100001110010110010100000001001011001011010000...

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.33333333330 ok K = 5000

Test #7:

score: 33.3333
Acceptable Answer
time: 0ms = 0ms + 0ms
memory: 3844kb,3784kb

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:

5000
0011111011101001110000111001001001011110010001000100110101101010010100010110010110000110110010100101111111110110010001110110111110100110111010100000110101111011001101110101000011001011000000111010111000000111010101010010001101000111010010111101101010100100001010100100111000111111110000101111101...

input:

2
100 79 5000
0011111011101001110000111001001001011110010001000100110101101010010100010110010110000110110010100101111111110110010001110110111110100110111010100000110101111011001101110101000011001011000000111010111000000111010101010010001101000111010010111101101010100100001010100100111000111111110000...

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.33333333330 ok K = 5000

Test #8:

score: 0
Wrong Answer
time: 0ms = 0ms + 0ms
memory: 3848kb,3836kb

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:

5000
1100011001100011010001010101011101110001011000101100110000100100001011111110110001100100111111011101000010001001110100000110100010010100101101000100110000100100100011001000010000011110010100011010011100100001111100101111100000001111101011101010110111001110011110101110011011110111110001101011010...

input:

2
100 79 5000
1100011001100011010001010101011101110001011000101100110000100100001011111110110001100100111111011101000010001001110100000110100010010100101101000100110000100100100011001000010000011110010100011010011100100001111100101111100000001111101011101010110111001110011110101110011011110111110001...

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
757173480
355385207
719060821
493794877
696188978
3014...

result:

wrong answer wrong answer on query #26: read 757173480 but expected 158314822