結果

問題 No.2486 Don't come next to me
ユーザー nono00nono00
提出日時 2023-09-29 21:56:29
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 278 ms / 2,000 ms
コード長 878 bytes
コンパイル時間 2,519 ms
コンパイル使用メモリ 254,776 KB
実行使用メモリ 29,824 KB
最終ジャッジ日時 2024-07-22 15:56:11
合計ジャッジ時間 6,011 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 225 ms
25,728 KB
testcase_01 AC 200 ms
23,552 KB
testcase_02 AC 44 ms
9,112 KB
testcase_03 AC 125 ms
17,536 KB
testcase_04 AC 196 ms
22,656 KB
testcase_05 AC 134 ms
17,664 KB
testcase_06 AC 149 ms
19,584 KB
testcase_07 AC 21 ms
6,940 KB
testcase_08 AC 48 ms
9,600 KB
testcase_09 AC 210 ms
24,064 KB
testcase_10 AC 141 ms
18,048 KB
testcase_11 AC 75 ms
12,160 KB
testcase_12 AC 29 ms
7,424 KB
testcase_13 AC 278 ms
29,824 KB
testcase_14 AC 56 ms
10,368 KB
testcase_15 AC 132 ms
18,048 KB
testcase_16 AC 22 ms
6,944 KB
testcase_17 AC 48 ms
9,344 KB
testcase_18 AC 43 ms
8,736 KB
testcase_19 AC 52 ms
9,984 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

namespace nono {

void solve() {
    long long n;
    int m;
    std::cin >> n >> m;
    std::vector<long long> a(m);
    for (int i = 0; i < m; i++) std::cin >> a[i];

    std::map<long long, long long> memo;
    auto calc = [&](auto self, long long v) -> long long {
        if (v <= 2) {
            return v;
        }
        if (memo.contains(v)) return memo[v];
        if (v % 2 == 0) {
            return memo[v] = v;
        } else {
            return memo[v] = 2 * self(self, v / 2);
        }
    };

    long long ans = 0;
    for (int i = 0; i + 1 < m; i++) {
        ans += calc(calc, a[i + 1] - a[i] - 1);
    }
    std::cout << ans << std::endl;
}

}  //  namespace nono

int main() {
    std::cin.tie(0)->sync_with_stdio(false);
    std::cout << std::fixed << std::setprecision(15);

    int t = 1;

    while (t--) nono::solve();
}
0