結果

問題 No.2989 Fibonacci Prize
ユーザー suisensuisen
提出日時 2024-12-14 20:24:21
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,504 bytes
コンパイル時間 1,252 ms
コンパイル使用メモリ 109,280 KB
実行使用メモリ 14,820 KB
最終ジャッジ日時 2024-12-14 20:24:31
合計ジャッジ時間 3,854 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 WA -
testcase_02 AC 7 ms
5,344 KB
testcase_03 WA -
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 1 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 WA -
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 WA -
testcase_20 AC 1 ms
5,248 KB
testcase_21 AC 1 ms
5,248 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 7 ms
5,248 KB
testcase_25 AC 7 ms
5,348 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 3 ms
5,248 KB
testcase_28 AC 4 ms
5,248 KB
testcase_29 AC 3 ms
5,248 KB
testcase_30 AC 2 ms
5,248 KB
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 2 ms
5,248 KB
testcase_33 AC 10 ms
5,600 KB
testcase_34 WA -
testcase_35 AC 2 ms
5,248 KB
testcase_36 WA -
testcase_37 AC 9 ms
5,732 KB
testcase_38 WA -
testcase_39 AC 3 ms
5,248 KB
testcase_40 WA -
testcase_41 AC 4 ms
5,248 KB
testcase_42 WA -
testcase_43 AC 40 ms
14,692 KB
testcase_44 WA -
testcase_45 AC 38 ms
14,688 KB
testcase_46 AC 27 ms
10,980 KB
testcase_47 WA -
testcase_48 AC 28 ms
10,848 KB
testcase_49 AC 26 ms
10,848 KB
testcase_50 WA -
testcase_51 AC 28 ms
10,848 KB
testcase_52 AC 28 ms
10,852 KB
testcase_53 WA -
testcase_54 AC 28 ms
10,724 KB
testcase_55 AC 22 ms
9,696 KB
testcase_56 WA -
testcase_57 AC 23 ms
9,828 KB
testcase_58 AC 26 ms
10,504 KB
testcase_59 WA -
testcase_60 AC 28 ms
10,464 KB
testcase_61 AC 23 ms
9,696 KB
testcase_62 WA -
testcase_63 AC 21 ms
9,700 KB
testcase_64 WA -
testcase_65 WA -
testcase_66 WA -
testcase_67 WA -
testcase_68 AC 2 ms
5,248 KB
testcase_69 AC 2 ms
5,248 KB
testcase_70 AC 1 ms
5,248 KB
testcase_71 WA -
testcase_72 AC 2 ms
5,248 KB
testcase_73 AC 2 ms
5,248 KB
testcase_74 AC 2 ms
5,248 KB
testcase_75 AC 2 ms
5,248 KB
testcase_76 AC 2 ms
5,248 KB
testcase_77 AC 2 ms
5,248 KB
testcase_78 AC 2 ms
5,248 KB
testcase_79 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cassert>
#include <iostream>
#include <map>
#include <vector>

long long naive(int n, int m) {
    std::vector<unsigned long long> fib{ 1u, 1u };
    for (int i = 2; i < m; ++i) {
        fib.push_back(fib[i - 1] + fib[i - 2]);
    }
    fib.resize(m);

    long long ans = 0;
    for (int r = m - 1; r >= 0; --r) {
        unsigned long long sum = 0;
        for (int l = r; l >= 0; --l) {
            if (fib[l] > fib[m - 1] - sum) break;
            sum += fib[l];
            ans += sum % n == 0;
        }
    }
    return ans;
}

long long solve(int n, int m) {
    --m;
    int w;
    std::vector<int> fib{ 1 % n };
    for (int i = 1, x = 1 % n, y = 1 % n; ; ++i) {
        if (x == 1 % n and y == 0) {
            w = i;
            break;
        }
        fib.push_back(x);
        y = (x + y) % n;
        std::swap(x, y);
    }

    std::vector<int> sum(w + 1);
    for (int i = 0; i < w; ++i) sum[i + 1] = (sum[i] + fib[i]) % n;
    assert(sum.back() == 0);

    std::vector<int> num(n), idx(w);
    for (int i = 0; i < w; ++i) idx[i] = num[sum[i]]++;

    long long ans = 0;

    int fm = fib[m % w];
    int fm1 = fib[(m + w - 1) % w];
    int fm2 = fib[(m + w - 2) % w];

    // f(m) = f(m)
    // f(m) = f(m-1)+f(m-2)
    // f(m) = f(m-2)+f(m-3)+...+f(0) + f(1)

    // r=m
    ans += (fm == 0);
    // r=m-1
    // ans += (m >= 1 and fm1 == 0);
    ans += (m >= 2 and (fm1 + fm2) % n == 0);
    // r<=m-2
    for (int rm = 0; rm < w; ++rm) if (rm <= m - 1) {
        long long lc = idx[rm], rc = num[sum[rm]] - lc;
        long long qmax = (m - 1 - rm) / w;
        ans += 1LL * lc * (qmax + 1) * (qmax + 2) / 2;
        ans += 1LL * rc * (qmax + 0) * (qmax + 1) / 2;
    }
    return ans;
}

#include <random>

int main() {
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);

    std::mt19937 rng{ std::random_device{}() };

    // for (int k = 0; k < 10000; ++k) {
    //     int n = 200000 - k % 100;
    //     long long m = 2000000000 - k / 100;
    //     std::cout << n << ' ' << m << ':' << solve(n, m) << std::endl;
    // }

    // for (int n = 198000; n >= 40000; --n) {
    //     for (int m = 93; m <= 93; ++m) {
    //         if (solve(n, m) != naive(n, m)) {
    //             std::cerr << "Failed: " << n << ' ' << m << '\n';
    //             return 0;
    //         }
    //         break;
    //     }
    //     std::cerr << "Passed: " << n << '\n';
    // }

    int n, m;
    std::cin >> n >> m;
    std::cout << solve(n, m) << '\n';
}
0