結果

問題 No.732 3PrimeCounting
ユーザー kyunakyuna
提出日時 2020-03-08 11:44:34
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 761 ms / 3,000 ms
コード長 1,810 bytes
コンパイル時間 868 ms
コンパイル使用メモリ 85,052 KB
実行使用メモリ 38,644 KB
最終ジャッジ日時 2024-11-06 23:06:22
合計ジャッジ時間 56,972 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 573 ms
36,300 KB
testcase_01 AC 580 ms
36,296 KB
testcase_02 AC 559 ms
36,296 KB
testcase_03 AC 571 ms
36,300 KB
testcase_04 AC 558 ms
36,296 KB
testcase_05 AC 557 ms
36,168 KB
testcase_06 AC 569 ms
36,168 KB
testcase_07 AC 564 ms
36,176 KB
testcase_08 AC 558 ms
36,300 KB
testcase_09 AC 576 ms
36,300 KB
testcase_10 AC 562 ms
36,176 KB
testcase_11 AC 557 ms
36,296 KB
testcase_12 AC 590 ms
36,296 KB
testcase_13 AC 567 ms
36,296 KB
testcase_14 AC 599 ms
36,300 KB
testcase_15 AC 561 ms
36,300 KB
testcase_16 AC 560 ms
36,304 KB
testcase_17 AC 561 ms
36,304 KB
testcase_18 AC 592 ms
36,168 KB
testcase_19 AC 544 ms
36,172 KB
testcase_20 AC 551 ms
36,312 KB
testcase_21 AC 550 ms
36,220 KB
testcase_22 AC 526 ms
36,340 KB
testcase_23 AC 553 ms
36,344 KB
testcase_24 AC 545 ms
36,300 KB
testcase_25 AC 569 ms
36,404 KB
testcase_26 AC 547 ms
36,372 KB
testcase_27 AC 551 ms
36,316 KB
testcase_28 AC 550 ms
36,316 KB
testcase_29 AC 552 ms
36,340 KB
testcase_30 AC 547 ms
36,344 KB
testcase_31 AC 564 ms
36,256 KB
testcase_32 AC 564 ms
36,384 KB
testcase_33 AC 553 ms
36,384 KB
testcase_34 AC 556 ms
36,388 KB
testcase_35 AC 582 ms
36,360 KB
testcase_36 AC 578 ms
36,364 KB
testcase_37 AC 587 ms
36,184 KB
testcase_38 AC 552 ms
36,432 KB
testcase_39 AC 567 ms
36,368 KB
testcase_40 AC 558 ms
36,356 KB
testcase_41 AC 571 ms
36,236 KB
testcase_42 AC 556 ms
36,232 KB
testcase_43 AC 562 ms
36,220 KB
testcase_44 AC 570 ms
36,224 KB
testcase_45 AC 586 ms
36,324 KB
testcase_46 AC 620 ms
36,320 KB
testcase_47 AC 579 ms
36,332 KB
testcase_48 AC 690 ms
36,416 KB
testcase_49 AC 567 ms
36,352 KB
testcase_50 AC 546 ms
36,352 KB
testcase_51 AC 561 ms
36,356 KB
testcase_52 AC 545 ms
36,320 KB
testcase_53 AC 590 ms
36,408 KB
testcase_54 AC 622 ms
37,576 KB
testcase_55 AC 628 ms
37,332 KB
testcase_56 AC 624 ms
37,580 KB
testcase_57 AC 592 ms
36,652 KB
testcase_58 AC 588 ms
36,652 KB
testcase_59 AC 554 ms
36,548 KB
testcase_60 AC 582 ms
36,788 KB
testcase_61 AC 576 ms
36,784 KB
testcase_62 AC 652 ms
37,800 KB
testcase_63 AC 614 ms
37,208 KB
testcase_64 AC 593 ms
37,024 KB
testcase_65 AC 570 ms
37,024 KB
testcase_66 AC 534 ms
36,172 KB
testcase_67 AC 533 ms
36,428 KB
testcase_68 AC 611 ms
37,808 KB
testcase_69 AC 639 ms
37,680 KB
testcase_70 AC 630 ms
37,592 KB
testcase_71 AC 626 ms
37,464 KB
testcase_72 AC 619 ms
37,040 KB
testcase_73 AC 690 ms
38,276 KB
testcase_74 AC 676 ms
38,276 KB
testcase_75 AC 540 ms
36,400 KB
testcase_76 AC 611 ms
37,660 KB
testcase_77 AC 565 ms
36,776 KB
testcase_78 AC 643 ms
37,892 KB
testcase_79 AC 617 ms
37,568 KB
testcase_80 AC 657 ms
37,772 KB
testcase_81 AC 639 ms
37,600 KB
testcase_82 AC 544 ms
36,312 KB
testcase_83 AC 582 ms
36,796 KB
testcase_84 AC 585 ms
36,836 KB
testcase_85 AC 607 ms
37,340 KB
testcase_86 AC 657 ms
37,924 KB
testcase_87 AC 761 ms
38,520 KB
testcase_88 AC 729 ms
38,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <iostream>
#include <vector>
using namespace std;

#include <complex>
struct FFT {
    using Complex = complex<double>;
    const double PI = acos(-1);
    const int sz = 1 << 19;     // 524288
    void dft(vector<Complex> &x, bool inv) {
    	for (int i = sz >> 1; i >= 1; i >>= 1) {
    		Complex bs = polar(1.0, 2.0 * PI * i / sz * (inv ? -1 : 1)), w = 1;
            vector<Complex> y(sz);
    		for (int j = 0; 2 * j < sz; j += i) {
    			for (int k = 0; k < i; k++) {
    				y[j + k]             = x[2 * j + k] + w * x[2 * j + i + k];
    				y[j + k + (sz >> 1)] = x[2 * j + k] - w * x[2 * j + i + k];
    			}
    			w *= bs;
    		}
    		x = y;
    	}
    	if (inv) for (int i = 0; i < sz; i++) x[i] /= sz;
    }
    vector<long long> multiply(vector<long long> &a, vector<long long> &b) {
        vector<Complex> x(sz), y(sz);
        for (int i = 0; i < (int)a.size(); i++) x[i] = Complex(a[i], 0.0);
        for (int i = 0; i < (int)b.size(); i++) y[i] = Complex(b[i], 0.0);
        dft(x, false), dft(y, false);
        for (int i = 0; i < sz; i++) x[i] *= y[i];
        dft(x, true);
        vector<long long> c(sz);
        for (int i = 0; i < sz; i++) c[i] = (long long)(x[i].real() + 0.5);
        return c;
    }
} fft;

bool is_prime(long long x) {
    if (x <= 1) return false;
    for (long long i = 2; i * i <= x; i++) if (x % i == 0) return false;
    return true;
}

int main() {
    int n; cin >> n;
    vector<long long> v(n + 1), w(n * 2 + 1);
    for (int i = 0; i <= n; i++) v[i] = w[i * 2] = is_prime(i);
    auto x = fft.multiply(v, v);
    auto y = fft.multiply(v, x);
    auto z = fft.multiply(v, w);
    long long ans = 0;
    for (int i = 0; i <= n * 3; i++) if (is_prime(i)) ans += y[i] - z[i] * 3;
    cout << ans / 6 << endl;
	return 0;
}
0