結果

問題 No.206 数の積集合を求めるクエリ
ユーザー Tsuneo YoshiokaTsuneo Yoshioka
提出日時 2015-05-08 23:50:18
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 1,084 bytes
コンパイル時間 837 ms
コンパイル使用メモリ 61,812 KB
実行使用メモリ 9,344 KB
最終ジャッジ日時 2024-07-05 20:49:32
合計ジャッジ時間 10,121 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 27 ms
5,376 KB
testcase_13 AC 18 ms
5,376 KB
testcase_14 AC 18 ms
5,376 KB
testcase_15 AC 11 ms
5,376 KB
testcase_16 AC 30 ms
5,376 KB
testcase_17 AC 70 ms
5,376 KB
testcase_18 AC 36 ms
5,376 KB
testcase_19 AC 63 ms
5,376 KB
testcase_20 AC 35 ms
5,376 KB
testcase_21 AC 45 ms
5,376 KB
testcase_22 AC 44 ms
5,376 KB
testcase_23 AC 66 ms
5,376 KB
testcase_24 TLE -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>

using namespace std;

int A[100000];
int B[100000];

int L, M;
//int calc(vector<int> &A, vector<int> &B, int v)
int calc(int v)
{
    //int AN = (int)A.size(), BN = (int)B.size();
    int AN = L, BN = M;
    int ap = 0, bp = 0;
    int count = 0;
    while(ap<AN && bp<BN){
        if(A[ap]==B[bp]+v){
        // cout << "ap=" << ap << ",bp=" << bp << endl;
            ap++, bp++;
            count ++;
        }else if(A[ap]>B[bp]+v){
            bp++;
        }else{
            ap++;
        }
    }
    return count;
}
int main(void){
    // Here your code !
    int N;
    cin >> L >> M >> N;
    //vector<int> A, B;
    for(int l=0;l<L;l++){
        int val;
        cin >> val;
        A[l] = val;
        // A.push_back(val);
    }
    for(int m=0;m<M;m++){
        int val;
        cin >> val;
        B[m] = val;
        //B.push_back(val);
    }
    int Q;
    cin >> Q;
    sort(A, A+L);
    sort(B, B+M);
    for(int v=0;v<Q;v++){
        int ret = calc(v);
        cout << ret << endl;
    }
    return 0;
}
0