結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 WA -
testcase_02 AC 8 ms
5,344 KB
testcase_03 WA -
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 1 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 AC 2 ms
5,248 KB
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 WA -
testcase_16 AC 1 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 8 ms
5,248 KB
testcase_25 AC 9 ms
5,476 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 2 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 3 ms
5,248 KB
testcase_32 AC 2 ms
5,248 KB
testcase_33 WA -
testcase_34 AC 3 ms
5,248 KB
testcase_35 WA -
testcase_36 AC 7 ms
5,600 KB
testcase_37 WA -
testcase_38 AC 2 ms
5,248 KB
testcase_39 WA -
testcase_40 AC 3 ms
5,248 KB
testcase_41 WA -
testcase_42 AC 8 ms
5,472 KB
testcase_43 AC 38 ms
14,792 KB
testcase_44 AC 38 ms
14,692 KB
testcase_45 WA -
testcase_46 AC 28 ms
10,976 KB
testcase_47 AC 26 ms
10,976 KB
testcase_48 WA -
testcase_49 AC 26 ms
10,772 KB
testcase_50 AC 27 ms
10,928 KB
testcase_51 WA -
testcase_52 AC 27 ms
10,980 KB
testcase_53 AC 26 ms
10,848 KB
testcase_54 WA -
testcase_55 AC 23 ms
9,952 KB
testcase_56 AC 22 ms
9,952 KB
testcase_57 WA -
testcase_58 AC 25 ms
10,724 KB
testcase_59 AC 24 ms
10,592 KB
testcase_60 WA -
testcase_61 AC 22 ms
9,828 KB
testcase_62 AC 23 ms
9,696 KB
testcase_63 WA -
testcase_64 WA -
testcase_65 WA -
testcase_66 WA -
testcase_67 WA -
testcase_68 AC 1 ms
5,248 KB
testcase_69 AC 2 ms
5,248 KB
testcase_70 WA -
testcase_71 AC 2 ms
5,248 KB
testcase_72 AC 2 ms
5,248 KB
testcase_73 AC 2 ms
5,248 KB
testcase_74 AC 1 ms
5,248 KB
testcase_75 WA -
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