結果
| 問題 | No.8016 unordered_mapなるたけ落とすマン |
| ユーザー |
|
| 提出日時 | 2016-05-22 00:45:28 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 73 ms / 1,000 ms |
| コード長 | 484 bytes |
| 記録 | |
| コンパイル時間 | 1,432 ms |
| コンパイル使用メモリ | 164,816 KB |
| 実行使用メモリ | 9,652 KB |
| 最終ジャッジ日時 | 2024-10-07 05:40:06 |
| 合計ジャッジ時間 | 6,486 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 48 |
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:22:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
22 | scanf("%lld", &a);
| ~~~~~^~~~~~~~~~~~
main.cpp:27:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
27 | scanf("%lld", &b);
| ~~~~~^~~~~~~~~~~~
ソースコード
#include <bits/stdc++.h>
using namespace std;
size_t r;
struct Hash {
size_t operator()(const long long &x) const {
return hash<long long>()(x) ^ r;
}
};
int main() {
int n, m;
cin >> n >> m;
srand(time(NULL));
r = rand() << 16 + rand();
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;
}