結果

問題 No.2989 Fibonacci Prize
ユーザー suisensuisen
提出日時 2024-12-14 18:24:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,642 bytes
コンパイル時間 1,120 ms
コンパイル使用メモリ 93,012 KB
実行使用メモリ 73,448 KB
最終ジャッジ日時 2024-12-14 18:25:07
合計ジャッジ時間 18,589 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 WA -
testcase_02 AC 68 ms
13,160 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 WA -
testcase_08 AC 2 ms
6,816 KB
testcase_09 WA -
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 2 ms
6,820 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 2 ms
6,816 KB
testcase_15 AC 2 ms
6,820 KB
testcase_16 WA -
testcase_17 AC 2 ms
6,820 KB
testcase_18 AC 2 ms
6,816 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 2 ms
6,820 KB
testcase_22 WA -
testcase_23 AC 3 ms
6,816 KB
testcase_24 AC 79 ms
13,924 KB
testcase_25 AC 82 ms
14,560 KB
testcase_26 AC 2 ms
6,816 KB
testcase_27 AC 3 ms
6,816 KB
testcase_28 AC 20 ms
6,820 KB
testcase_29 AC 21 ms
7,040 KB
testcase_30 AC 2 ms
6,816 KB
testcase_31 AC 5 ms
6,816 KB
testcase_32 AC 2 ms
6,816 KB
testcase_33 AC 106 ms
17,280 KB
testcase_34 AC 7 ms
6,816 KB
testcase_35 AC 2 ms
6,820 KB
testcase_36 AC 89 ms
13,540 KB
testcase_37 AC 82 ms
14,944 KB
testcase_38 AC 6 ms
6,816 KB
testcase_39 AC 4 ms
6,816 KB
testcase_40 AC 8 ms
6,820 KB
testcase_41 AC 17 ms
7,040 KB
testcase_42 AC 73 ms
14,436 KB
testcase_43 AC 1,078 ms
73,448 KB
testcase_44 AC 1,035 ms
73,412 KB
testcase_45 AC 1,195 ms
73,336 KB
testcase_46 AC 598 ms
48,888 KB
testcase_47 AC 624 ms
48,748 KB
testcase_48 AC 661 ms
49,296 KB
testcase_49 AC 629 ms
47,840 KB
testcase_50 AC 673 ms
48,040 KB
testcase_51 AC 643 ms
48,044 KB
testcase_52 AC 639 ms
48,548 KB
testcase_53 WA -
testcase_54 AC 650 ms
47,888 KB
testcase_55 AC 490 ms
42,084 KB
testcase_56 AC 550 ms
42,080 KB
testcase_57 AC 539 ms
41,952 KB
testcase_58 AC 555 ms
46,876 KB
testcase_59 WA -
testcase_60 AC 564 ms
46,752 KB
testcase_61 AC 520 ms
41,064 KB
testcase_62 WA -
testcase_63 AC 502 ms
41,192 KB
testcase_64 WA -
testcase_65 WA -
testcase_66 WA -
testcase_67 WA -
testcase_68 WA -
testcase_69 WA -
testcase_70 AC 2 ms
6,816 KB
testcase_71 WA -
testcase_72 AC 2 ms
6,816 KB
testcase_73 AC 2 ms
6,820 KB
testcase_74 WA -
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,820 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<int> mod_count(n);
    std::vector<int> idx(loop);
    for (int i = 0; i < loop; ++i) {
        idx[i] = mod_count[sm[i]]++;
    }

    long long ans = 0;

    // r=m
    if (fib[m % loop] == 0) ++ans;
    // r=m-1
    if (m >= 1) {
        if (fib[(m - 1) % loop] == 0) ++ans;
    }
    if (m >= 2) {
        if ((fib[(m - 2) % loop] + fib[(m - 1) % loop]) % n == 0) ++ans;
    }
    // r<=m-2
    for (int rm = 0; rm < loop; ++rm) {
        if (rm > m - 1) break;
        int lc = idx[rm], rc = mod_count[sm[rm]] - lc;
        int qmax = (m - rm - 1) / loop;
        ans += 1LL * lc * (qmax + 1) * (qmax + 2) / 2;
        ans += 1LL * rc * (qmax + 0) * (qmax + 1) / 2;
    }
    // l=1, r=m-2
    if ((fib[m % loop] + 1) % n == 0) --ans;
    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