結果

問題 No.2989 Fibonacci Prize
ユーザー suisensuisen
提出日時 2024-12-14 18:13:12
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,625 bytes
コンパイル時間 1,018 ms
コンパイル使用メモリ 94,272 KB
実行使用メモリ 83,896 KB
最終ジャッジ日時 2024-12-14 18:13:33
合計ジャッジ時間 19,114 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 78 ms
18,148 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 2 ms
6,820 KB
testcase_14 AC 2 ms
6,816 KB
testcase_15 AC 2 ms
6,816 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 2 ms
6,820 KB
testcase_22 WA -
testcase_23 AC 4 ms
6,816 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 4 ms
6,912 KB
testcase_28 AC 25 ms
9,344 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 RE -
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
testcase_61 RE -
testcase_62 WA -
testcase_63 WA -
testcase_64 WA -
testcase_65 AC 2 ms
6,816 KB
testcase_66 AC 2 ms
6,816 KB
testcase_67 WA -
testcase_68 AC 2 ms
6,820 KB
testcase_69 AC 2 ms
6,816 KB
testcase_70 AC 1 ms
6,820 KB
testcase_71 WA -
testcase_72 AC 2 ms
6,816 KB
testcase_73 AC 2 ms
6,816 KB
testcase_74 AC 2 ms
6,816 KB
testcase_75 AC 2 ms
6,820 KB
testcase_76 AC 2 ms
6,820 KB
testcase_77 AC 2 ms
6,816 KB
testcase_78 AC 2 ms
6,816 KB
testcase_79 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

void solve(int n, int m) {
    --m;

    std::map<std::pair<int, int>, int> memo;
    memo[{1 % n, 0}] = 0;

    int loop;

    std::vector<int> fib{ 1 % n };

    for (int i = 1, x = 1 % n, y = 1 % n; ; ++i) {
        auto [it, inserted] = memo.try_emplace(std::make_pair(x, y), i);
        if (not inserted) {
            assert(it->second == 0);
            loop = i - it->second;
            break;
        }
        fib.push_back(x);
        y = (x + y) % n;
        std::swap(x, y);
    }

    std::vector<int> sm(loop + 1);
    for (int i = 0; i < loop; ++i) {
        sm[i + 1] = (sm[i] + fib[i]) % n;
    }
    assert(sm.back() == 0);

    std::vector<std::vector<int>> ms(n);
    std::vector<int> idx(loop);
    for (int i = 0; i < loop; ++i) {
        int siz = ms[sm[i]].size();
        ms[sm[i]].push_back(i);
        idx[i] = siz;
    }

    long long ans = 0;

    // r=m
    if (fib[m % loop] == 0) ++ans;
    // r=m-1
    {
        int lc = idx[m % loop], rc = ms[m % loop].size() - lc;
        ans += 1LL * lc * (m / loop + 1);
        ans += 1LL * rc * (m / loop);
    }
    // r<=m-2
    for (int rm = 0; rm < loop; ++rm) {
        int lc = idx[rm], rc = ms[sm[rm]].size() - lc;
        if (m - rm - 1 < 0) break;
        int qmax = (m - rm - 1) / loop;
        ans += 1LL * lc * (qmax + 1) * (qmax + 2) / 2;
        ans += 1LL * rc * qmax * (qmax + 1) / 2;
    }
    std::cout << ans << '\n';
}

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

    int n, m;
    std::cin >> n >> m;
    solve(n, m);
}
0