結果

問題 No.3016 unordered_mapなるたけ落とすマン
ユーザー TlapesiumTlapesium
提出日時 2020-08-16 19:43:12
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 60 ms / 1,000 ms
コード長 785 bytes
コンパイル時間 3,830 ms
コンパイル使用メモリ 245,624 KB
実行使用メモリ 12,648 KB
最終ジャッジ日時 2024-11-15 04:56:14
合計ジャッジ時間 8,485 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 50 ms
12,420 KB
testcase_04 AC 57 ms
12,516 KB
testcase_05 AC 56 ms
12,524 KB
testcase_06 AC 58 ms
12,520 KB
testcase_07 AC 58 ms
12,520 KB
testcase_08 AC 57 ms
12,520 KB
testcase_09 AC 55 ms
12,524 KB
testcase_10 AC 60 ms
12,544 KB
testcase_11 AC 56 ms
12,612 KB
testcase_12 AC 54 ms
12,520 KB
testcase_13 AC 55 ms
12,476 KB
testcase_14 AC 53 ms
12,452 KB
testcase_15 AC 52 ms
12,520 KB
testcase_16 AC 53 ms
12,520 KB
testcase_17 AC 53 ms
12,624 KB
testcase_18 AC 52 ms
12,544 KB
testcase_19 AC 52 ms
12,516 KB
testcase_20 AC 53 ms
12,544 KB
testcase_21 AC 52 ms
12,524 KB
testcase_22 AC 53 ms
12,552 KB
testcase_23 AC 53 ms
12,524 KB
testcase_24 AC 52 ms
12,628 KB
testcase_25 AC 52 ms
12,468 KB
testcase_26 AC 51 ms
12,524 KB
testcase_27 AC 50 ms
12,436 KB
testcase_28 AC 51 ms
12,468 KB
testcase_29 AC 50 ms
12,452 KB
testcase_30 AC 51 ms
12,636 KB
testcase_31 AC 49 ms
12,572 KB
testcase_32 AC 50 ms
12,524 KB
testcase_33 AC 51 ms
12,520 KB
testcase_34 AC 50 ms
12,604 KB
testcase_35 AC 50 ms
12,492 KB
testcase_36 AC 50 ms
12,548 KB
testcase_37 AC 50 ms
12,648 KB
testcase_38 AC 49 ms
12,536 KB
testcase_39 AC 50 ms
12,600 KB
testcase_40 AC 51 ms
12,520 KB
testcase_41 AC 2 ms
6,816 KB
testcase_42 AC 2 ms
6,820 KB
testcase_43 AC 2 ms
6,816 KB
testcase_44 AC 5 ms
6,820 KB
testcase_45 AC 5 ms
6,820 KB
testcase_46 AC 5 ms
6,820 KB
testcase_47 AC 38 ms
7,916 KB
testcase_48 AC 43 ms
12,552 KB
testcase_49 AC 44 ms
12,556 KB
testcase_50 AC 36 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("O3")
//#pragma GCC optimize ("unroll-loops")
#pragma GCC target ("avx2")
#define io_init cin.tie(0);ios::sync_with_stdio(0);cout<<setprecision(10)
#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
constexpr int INF = 2147483647;
constexpr long long int INF_LL = 9223372036854775807;
constexpr int MOD = 1000000007;
constexpr double PI = 3.14159265358979323846;
using namespace std;
typedef long long int ll;
typedef unsigned long long int ull;


int main() {
	io_init;
	int N, M;
	cin >> N >> M;
	__gnu_pbds::gp_hash_table<ll, int> hm;
	for (int i = 0; i < N; i++) {
		ll tmp;
		cin >> tmp;
		hm[tmp]++;
	}
	for (int i = 0; i < M; i++) {
		ll tmp;
		cin >> tmp;
		cout << hm[tmp] << (i == M ? "\n" : " ");
	}
}
0