結果

問題 No.642 Two Operations No.1
ユーザー tecchaxntecchaxn
提出日時 2018-02-02 21:41:29
言語 C++11
(gcc 13.3.0)
結果
TLE  
実行時間 -
コード長 742 bytes
コンパイル時間 1,415 ms
コンパイル使用メモリ 162,832 KB
実行使用メモリ 814,684 KB
最終ジャッジ日時 2024-12-31 07:20:03
合計ジャッジ時間 19,196 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 869 ms
299,464 KB
testcase_05 AC 1,064 ms
375,308 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 AC 237 ms
78,532 KB
testcase_10 TLE -
testcase_11 AC 356 ms
117,884 KB
testcase_12 TLE -
testcase_13 AC 8 ms
6,692 KB
testcase_14 AC 6 ms
6,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define REP(i,n) for(int i=0;i<(n);i++)
#define ALL(v) (v).begin(),(v).end()
#define int long long

using namespace std;
typedef pair<int,int> P;

//-----------------------------------------------------------------------

const int INF=1e18;

signed main()
{
    cin.tie(0);
    ios::sync_with_stdio(false);

    int n; cin>>n;

    queue<int> que;
    que.push(n);
    
    int ans=0;
    while(!que.empty()){
        int sz=que.size();
        REP(i,sz){
            int x=que.front(); que.pop();
            if(x==1){
                cout<<ans<<endl;
                return 0;
            }else{
                que.push(x+1);
                if(x%2==0) que.push(x/2);
            }
        }
        ans++;
    }
}
0