結果

問題 No.2486 Don't come next to me
ユーザー PAKACHUPAKACHU
提出日時 2023-09-29 22:39:18
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 380 ms / 2,000 ms
コード長 937 bytes
コンパイル時間 4,417 ms
コンパイル使用メモリ 164,992 KB
実行使用メモリ 29,568 KB
最終ジャッジ日時 2024-07-22 16:38:44
合計ジャッジ時間 8,123 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 328 ms
25,728 KB
testcase_01 AC 301 ms
23,552 KB
testcase_02 AC 67 ms
9,088 KB
testcase_03 AC 189 ms
17,536 KB
testcase_04 AC 281 ms
22,784 KB
testcase_05 AC 194 ms
17,536 KB
testcase_06 AC 226 ms
19,328 KB
testcase_07 AC 30 ms
6,144 KB
testcase_08 AC 71 ms
9,344 KB
testcase_09 AC 286 ms
24,064 KB
testcase_10 AC 195 ms
17,920 KB
testcase_11 AC 101 ms
12,032 KB
testcase_12 AC 42 ms
7,552 KB
testcase_13 AC 380 ms
29,568 KB
testcase_14 AC 79 ms
10,496 KB
testcase_15 AC 192 ms
17,792 KB
testcase_16 AC 32 ms
6,500 KB
testcase_17 AC 67 ms
9,344 KB
testcase_18 AC 59 ms
8,592 KB
testcase_19 AC 74 ms
9,856 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
typedef unsigned long long ull;
typedef long double ld;
int dx[8] = { 1, 0, -1, 0, 1, 1, -1, -1 }, dy[8] = { 0, 1, 0, -1, 1, -1, 1, -1 };
const long long mod = 998244353;
const ll inf = 1LL << 60;
const int INF = 5e8;

int main()
{
    ll n, m;
    cin >> n >> m;

    vector<ll> a(m);
    for (int i = 0; i < m; i++)
        cin >> a[i];

    ll ans = 0;

    map<ll, ll> mp;
    auto f = [&](auto self, ll x) {
        if (mp.count(x))
            return mp[x];
        if (x == 0)
            return 0LL;
        if (x == 1)
            return 1LL;
        ll ret = 0;
        if (x % 2 == 0) {
            ret = x;
        } else {
            ret = 2 * self(self, x / 2);
        }
        return mp[x] = ret;
    };

    for (int i = 0; i < m; i++) {
        ll x = a[i] - (i == 0 ? 0 : a[i - 1]) - 1;
        ans += f(f, x);
    }
    cout << ans << endl;
}
0