結果
| 問題 | No.8016 unordered_mapなるたけ落とすマン |
| ユーザー |
|
| 提出日時 | 2016-05-22 00:54:36 |
| 言語 | C++11 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 70 ms / 1,000 ms |
| コード長 | 561 bytes |
| 記録 | |
| コンパイル時間 | 1,616 ms |
| コンパイル使用メモリ | 180,240 KB |
| 実行使用メモリ | 9,788 KB |
| 最終ジャッジ日時 | 2026-04-23 23:41:02 |
| 合計ジャッジ時間 | 7,256 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 48 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
unsigned xor_shift(unsigned x) {
static unsigned y = time(NULL);
x ^= y; x ^= x << 13; x ^= x >> 7; x ^= x << 17;
return x;
}
struct Hash {
size_t operator()(const long long &x) const {
return xor_shift(hash<long long>()(x));
}
};
int main() {
int n, m;
cin >> n >> m;
unordered_map<long long, int, Hash> mp;
for (int i = 0; i < n; i++) {
long long a;
scanf("%lld", &a);
mp[a]++;
}
for (int i = 0; i < m; i++) {
long long b;
scanf("%lld", &b);
printf("%d ", mp[b]);
}
cout << endl;
}