結果

問題 No.2486 Don't come next to me
ユーザー hiro71687khiro71687k
提出日時 2023-09-29 21:27:17
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 673 bytes
コンパイル時間 5,711 ms
コンパイル使用メモリ 261,336 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-22 15:26:43
合計ジャッジ時間 7,868 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
5,248 KB
testcase_01 AC 106 ms
5,376 KB
testcase_02 AC 32 ms
5,376 KB
testcase_03 AC 76 ms
5,376 KB
testcase_04 AC 103 ms
5,376 KB
testcase_05 AC 76 ms
5,376 KB
testcase_06 AC 85 ms
5,376 KB
testcase_07 AC 17 ms
5,376 KB
testcase_08 AC 35 ms
5,376 KB
testcase_09 AC 104 ms
5,376 KB
testcase_10 AC 79 ms
5,376 KB
testcase_11 AC 47 ms
5,376 KB
testcase_12 AC 24 ms
5,376 KB
testcase_13 AC 138 ms
5,376 KB
testcase_14 AC 38 ms
5,376 KB
testcase_15 AC 78 ms
5,376 KB
testcase_16 AC 18 ms
5,376 KB
testcase_17 AC 33 ms
5,376 KB
testcase_18 AC 31 ms
5,376 KB
testcase_19 AC 36 ms
5,376 KB
testcase_20 AC 2 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>
#include <atcoder/all>
using namespace atcoder;
using namespace std;
using ll=long long;
using ld=long double;
ld pie=3.141592653589793;
ll mod=1000000007;
ll inf=10000;
ll dfs(ll now){
    if (now%2==0)
    {
        return now;
    }
    if (now==5)
    {
        return 4;
    }else if (now==1)
    {
        return 1;
    }else if (now==3)
    {
        return 2;
    }
    return 2*dfs((now-1)/2);
}
int main(){
    ll n,m;
    cin >> n >> m;
    vector<ll>a(m);
    for (ll i = 0; i < m; i++)
    {
        cin >> a[i];
    }
    ll ans=0;
    for (ll i = 1; i < m; i++)
    {
        ans+=dfs(a[i]-a[i-1]-1);
    }
    cout << ans << endl;
}
0