結果

問題 No.3016 unordered_mapなるたけ落とすマン
ユーザー 西尾西尾
提出日時 2018-03-07 14:04:39
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 242 ms / 1,000 ms
コード長 492 bytes
コンパイル時間 1,767 ms
コンパイル使用メモリ 173,260 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-01 21:15:07
合計ジャッジ時間 14,851 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 225 ms
5,248 KB
testcase_04 AC 238 ms
5,248 KB
testcase_05 AC 238 ms
5,248 KB
testcase_06 AC 236 ms
5,248 KB
testcase_07 AC 238 ms
5,248 KB
testcase_08 AC 239 ms
5,248 KB
testcase_09 AC 236 ms
5,248 KB
testcase_10 AC 234 ms
5,248 KB
testcase_11 AC 232 ms
5,248 KB
testcase_12 AC 228 ms
5,248 KB
testcase_13 AC 232 ms
5,248 KB
testcase_14 AC 232 ms
5,248 KB
testcase_15 AC 230 ms
5,248 KB
testcase_16 AC 228 ms
5,248 KB
testcase_17 AC 230 ms
5,248 KB
testcase_18 AC 228 ms
5,248 KB
testcase_19 AC 225 ms
5,248 KB
testcase_20 AC 201 ms
5,248 KB
testcase_21 AC 199 ms
5,248 KB
testcase_22 AC 189 ms
5,248 KB
testcase_23 AC 193 ms
5,248 KB
testcase_24 AC 191 ms
5,248 KB
testcase_25 AC 198 ms
5,248 KB
testcase_26 AC 193 ms
5,248 KB
testcase_27 AC 195 ms
5,248 KB
testcase_28 AC 200 ms
5,248 KB
testcase_29 AC 194 ms
5,248 KB
testcase_30 AC 189 ms
5,248 KB
testcase_31 AC 192 ms
5,248 KB
testcase_32 AC 188 ms
5,248 KB
testcase_33 AC 185 ms
5,248 KB
testcase_34 AC 187 ms
5,248 KB
testcase_35 AC 186 ms
5,248 KB
testcase_36 AC 182 ms
5,248 KB
testcase_37 AC 183 ms
5,248 KB
testcase_38 AC 186 ms
5,248 KB
testcase_39 AC 182 ms
5,248 KB
testcase_40 AC 181 ms
5,248 KB
testcase_41 AC 2 ms
5,248 KB
testcase_42 AC 1 ms
5,248 KB
testcase_43 AC 2 ms
5,248 KB
testcase_44 AC 18 ms
5,248 KB
testcase_45 AC 16 ms
5,248 KB
testcase_46 AC 17 ms
5,248 KB
testcase_47 AC 167 ms
5,248 KB
testcase_48 AC 157 ms
5,248 KB
testcase_49 AC 184 ms
5,248 KB
testcase_50 AC 242 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main()
{
int i;
int N;
int M;
long long B;

	cin >> N;
	cin >> M;

vector<long long> A( N );
pair<vector<long long>::iterator,
		vector<long long>::iterator> it;

	for( i = 0; i < N; i++ ) cin >> A[ i ];

	sort( A.begin(), A.end() );

	for( i = 0; i < M; i++ )
	{
		cin >> B;
		it = equal_range( A.begin(), A.end(), B );
		cout << (int)( it.second - it.first );
		
		if( i == M - 1 )
			cout << endl;
		else
			cout << " ";
	}

	return 0;
}
0