結果

問題 No.642 Two Operations No.1
ユーザー uw_yu1rabbituw_yu1rabbit
提出日時 2020-09-03 14:55:41
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 805 bytes
コンパイル時間 1,199 ms
コンパイル使用メモリ 86,016 KB
実行使用メモリ 608,128 KB
最終ジャッジ日時 2024-11-23 18:29:06
合計ジャッジ時間 35,463 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,496 KB
testcase_01 MLE -
testcase_02 AC 14 ms
12,064 KB
testcase_03 MLE -
testcase_04 TLE -
testcase_05 MLE -
testcase_06 TLE -
testcase_07 MLE -
testcase_08 MLE -
testcase_09 MLE -
testcase_10 MLE -
testcase_11 MLE -
testcase_12 MLE -
testcase_13 MLE -
testcase_14 MLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:31:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   31 | main(){
      | ^~~~

ソースコード

diff #

#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
#include<iostream>
#include<map>
using namespace std;
using i32 = int_fast32_t;
using i64 = int_fast64_t;
#define rep(i, n) for (i32 i = 0; i < (i32)(n); i++)
#define all(a) (a).begin(),(a).end()
#define rall(a) (a).rbegin(),(a).rend()
using P = pair<i64,i64>;
map<i64,i64>mp;
i64 n;
void dfs(i64 x,i64 cnt){
    if(x != 1 && mp[x] != 0 && mp[x] < cnt){
        return;
    }else if(x == n){
        mp[x] = cnt;
        return ;
    }else if(x < 1){
        return ;
    }else if(x > 2 * n){
        return ;
    }
    mp[x] = cnt;
    dfs(2 * x,cnt + 1);
    dfs(x - 1,cnt + 1);
    return ;
}
main(){
ios::sync_with_stdio(false);
std::cin.tie(nullptr);
cin >> n;
dfs((i64)(1),(i64)(0));
cout << mp[n] << endl;
}
0