結果

問題 No.206 数の積集合を求めるクエリ
ユーザー Kmcode1Kmcode1
提出日時 2015-05-08 23:13:06
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 906 bytes
コンパイル時間 2,944 ms
コンパイル使用メモリ 89,864 KB
実行使用メモリ 4,504 KB
最終ジャッジ日時 2023-09-19 08:19:16
合計ジャッジ時間 11,317 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 WA -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 WA -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 WA -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 AC 1,824 ms
4,384 KB
testcase_28 RE -
testcase_29 RE -
testcase_30 AC 2,428 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<cstdio>
#include<cstring>
#include<string>
#include<cctype>
#include<cstdlib>
#include<algorithm>
#include<bitset>
#include<vector>
#include<list>
#include<deque>
#include<queue>
#include<map>
#include<set>
#include<stack>
#include<cmath>
#include<sstream>
#include<fstream>
#include<iomanip>
#include<ctime>
#include<complex>
#include<functional>
#include<climits>
#include<cassert>
#include<iterator>
using namespace std;
int l, m, n;
#define MAX 100002
int a[MAX];
int b[MAX];
int ans[MAX];
int main(){
	scanf("%d%d%d", &l, &m, &n);
	for (int i = 0; i < l; i++){
		scanf("%d", &a[i]);
	}
	for (int j = 0; j < m; j++){
		scanf("%d", &b[j]);
	}
	for (int i = 0; i < m; i++){
		int ind = lower_bound(a, a + m,b[i])-a;
		for (int j = ind; j < l; j++){
			ans[a[j] - b[i]]++;
		}
	}
	int q;
	scanf("%d", &q);
	for (int i = 0; i < q; i++){
		printf("%d\n", ans[i]);
	}
	return 0;
}
0