結果

問題 No.3016 unordered_mapなるたけ落とすマン
ユーザー Ryuhei MoriRyuhei Mori
提出日時 2020-05-23 17:07:08
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 69 ms / 1,000 ms
コード長 802 bytes
コンパイル時間 550 ms
コンパイル使用メモリ 51,584 KB
実行使用メモリ 18,568 KB
最終ジャッジ日時 2024-10-08 13:35:19
合計ジャッジ時間 7,339 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
15,268 KB
testcase_01 AC 6 ms
15,360 KB
testcase_02 AC 5 ms
15,320 KB
testcase_03 AC 69 ms
18,432 KB
testcase_04 AC 65 ms
18,432 KB
testcase_05 AC 67 ms
18,304 KB
testcase_06 AC 63 ms
18,304 KB
testcase_07 AC 64 ms
18,304 KB
testcase_08 AC 62 ms
18,356 KB
testcase_09 AC 67 ms
18,208 KB
testcase_10 AC 67 ms
18,432 KB
testcase_11 AC 67 ms
18,352 KB
testcase_12 AC 66 ms
18,340 KB
testcase_13 AC 69 ms
18,496 KB
testcase_14 AC 66 ms
18,432 KB
testcase_15 AC 66 ms
18,304 KB
testcase_16 AC 64 ms
18,320 KB
testcase_17 AC 63 ms
18,432 KB
testcase_18 AC 61 ms
18,432 KB
testcase_19 AC 61 ms
18,336 KB
testcase_20 AC 64 ms
18,304 KB
testcase_21 AC 63 ms
18,384 KB
testcase_22 AC 62 ms
18,528 KB
testcase_23 AC 62 ms
18,568 KB
testcase_24 AC 64 ms
18,376 KB
testcase_25 AC 63 ms
18,304 KB
testcase_26 AC 62 ms
18,356 KB
testcase_27 AC 57 ms
18,448 KB
testcase_28 AC 56 ms
18,432 KB
testcase_29 AC 60 ms
18,368 KB
testcase_30 AC 60 ms
18,260 KB
testcase_31 AC 62 ms
18,432 KB
testcase_32 AC 63 ms
18,476 KB
testcase_33 AC 63 ms
18,364 KB
testcase_34 AC 59 ms
18,408 KB
testcase_35 AC 61 ms
18,368 KB
testcase_36 AC 61 ms
18,456 KB
testcase_37 AC 58 ms
18,404 KB
testcase_38 AC 61 ms
18,436 KB
testcase_39 AC 58 ms
18,432 KB
testcase_40 AC 57 ms
18,212 KB
testcase_41 AC 5 ms
15,264 KB
testcase_42 AC 5 ms
15,360 KB
testcase_43 AC 5 ms
15,264 KB
testcase_44 AC 10 ms
15,584 KB
testcase_45 AC 9 ms
15,616 KB
testcase_46 AC 9 ms
15,644 KB
testcase_47 AC 47 ms
17,300 KB
testcase_48 AC 48 ms
17,536 KB
testcase_49 AC 48 ms
17,460 KB
testcase_50 AC 48 ms
15,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <array>
#include <vector>

using u32 = unsigned int;
using u64 = unsigned long long int;

template <typename T, int n>
class Hash {
  std::array<std::vector<std::pair<u64, T> >, 1<<(n+2)> v;

  u32 h(u64 a) const {
    static constexpr u64 r = 11995408973635179863ULL;
    return a * r >> (64 - (n+2));
  }

  public:
  T &operator[](u64 a){
    u32 i = h(a);
    for(auto &w: v[i]){
      if(w.first == a) return w.second;
    }
    v[i].emplace_back(a, T());
    return v[i].back().second;
  }
};

int n, m;

int main(){
  scanf("%d%d", &n, &m);

  Hash<u64, 17> h;
  for(int i = 0; i < n; i++){
    u64 a;
    scanf("%llu", &a);
    ++h[a];
  }
  for(int i = 0; i < m; i++){
    u64 a;
    scanf("%llu", &a);
    printf("%llu%c", h[a], " \n"[i == m-1]);
  }
  return 0;
}
0