結果

問題 No.206 数の積集合を求めるクエリ
ユーザー yosupotyosupot
提出日時 2015-05-19 13:04:00
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 643 ms / 7,000 ms
コード長 1,878 bytes
コンパイル時間 419 ms
コンパイル使用メモリ 62,248 KB
実行使用メモリ 8,816 KB
最終ジャッジ日時 2024-07-06 05:45:07
合計ジャッジ時間 21,089 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 593 ms
8,688 KB
testcase_01 AC 627 ms
8,692 KB
testcase_02 AC 596 ms
8,672 KB
testcase_03 AC 602 ms
8,816 KB
testcase_04 AC 599 ms
8,688 KB
testcase_05 AC 607 ms
8,688 KB
testcase_06 AC 594 ms
8,556 KB
testcase_07 AC 593 ms
8,652 KB
testcase_08 AC 593 ms
8,684 KB
testcase_09 AC 600 ms
8,560 KB
testcase_10 AC 609 ms
8,752 KB
testcase_11 AC 598 ms
8,684 KB
testcase_12 AC 589 ms
8,688 KB
testcase_13 AC 594 ms
8,812 KB
testcase_14 AC 596 ms
8,684 KB
testcase_15 AC 601 ms
8,692 KB
testcase_16 AC 597 ms
8,688 KB
testcase_17 AC 614 ms
8,812 KB
testcase_18 AC 607 ms
8,692 KB
testcase_19 AC 609 ms
8,816 KB
testcase_20 AC 604 ms
8,616 KB
testcase_21 AC 606 ms
8,684 KB
testcase_22 AC 610 ms
8,688 KB
testcase_23 AC 613 ms
8,692 KB
testcase_24 AC 623 ms
8,688 KB
testcase_25 AC 614 ms
8,816 KB
testcase_26 AC 617 ms
8,688 KB
testcase_27 AC 621 ms
8,756 KB
testcase_28 AC 643 ms
8,560 KB
testcase_29 AC 624 ms
8,616 KB
testcase_30 AC 610 ms
8,688 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:60:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   60 |     scanf("%d %d %d", &l, &m, &n);
      |     ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
main.cpp:63:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   63 |         scanf("%d", &a);
      |         ~~~~~^~~~~~~~~~
main.cpp:68:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   68 |         scanf("%d", &b);
      |         ~~~~~^~~~~~~~~~
main.cpp:73:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   73 |     scanf("%d", &q);
      |     ~~~~~^~~~~~~~~~

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cassert>
#include <cstring>
#include <cstdio>

using namespace std;
typedef long long ll;

namespace Karatsuba {
    template<class T>
    vector<T> naive_mul(vector<T> &a, vector<T> &b) {
        int n = (int)a.size();
        vector<T> res(2*n-1, 0);
        for (int i = 0; i < n; i++) {
            for (int j = 0; j < n; j++) {
                res[i+j] += a[i]*b[j];
            }
        }
        return res;
    }

    template<class T>
    vector<T> mul(vector<T> &a, vector<T> &b) {
        assert(a.size() == b.size());
        int n = (int)a.size();
        if (n <= (1<<6)) {
            return naive_mul(a, b);//{a[0] * b[0]};
        }
        int m = n/2;
        auto A = vector<T>(a.begin()+m, a.end());
        auto B = vector<T>(a.begin(), a.begin()+m);
        auto C = vector<T>(b.begin()+m, b.end());
        auto D = vector<T>(b.begin(), b.begin()+m);
        auto z2 = mul(B, D);
        auto z0 = mul(A, C);
        for (int i = 0; i < m; i++) {
            B[i] += A[i];
            D[i] += C[i];
        }
        auto z1 = mul(B, D);
        for (int i = 0; i < n-1; i++) {
            z1[i] -= (z0[i] + z2[i]);
        }
        auto res = vector<T>(2*n-1, 0);
        for (int i = 0; i < n-1; i++) {
            res[i] += z2[i];
            res[i+m] += z1[i];
            res[i+n] += z0[i];
        }
        return res;
    }
}

const int N = 1<<17;
vector<int> A(N, 0), B(N, 0);

int main() {
    int l, m, n;
    scanf("%d %d %d", &l, &m, &n);
    for (int i = 0; i < l; i++) {
        int a;
        scanf("%d", &a);
        A[N-a] = 1;
    }
    for (int i = 0; i < m; i++) {
        int b;
        scanf("%d", &b);
        B[b] = 1;
    }
    auto C = Karatsuba::mul(A, B);
    int q;
    scanf("%d", &q);
    for (int i = 0; i < q; i++) {
        printf("%d\n", C[N-i]);
    }
    return 0;
}
0