結果

問題 No.3 ビットすごろく
ユーザー tanimani364tanimani364
提出日時 2019-12-03 12:37:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,511 bytes
コンパイル時間 1,412 ms
コンパイル使用メモリ 132,172 KB
実行使用メモリ 10,020 KB
最終ジャッジ日時 2024-11-27 03:18:24
合計ジャッジ時間 62,587 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
8,320 KB
testcase_01 AC 2 ms
8,320 KB
testcase_02 AC 2 ms
8,448 KB
testcase_03 AC 1 ms
8,320 KB
testcase_04 WA -
testcase_05 TLE -
testcase_06 AC 2 ms
8,448 KB
testcase_07 AC 2 ms
8,448 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 TLE -
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 TLE -
testcase_15 AC 2 ms
5,248 KB
testcase_16 WA -
testcase_17 TLE -
testcase_18 AC 2 ms
5,248 KB
testcase_19 TLE -
testcase_20 WA -
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 2 ms
6,824 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 2 ms
5,248 KB
testcase_27 WA -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>
#include<vector>
#include<algorithm>
#include<map>
#include<set>
#include<cstdio>
#include<cmath>
#include<numeric>
#include<queue>
#include<stack>
#include<cstring>
#include<limits>
#include<functional>
#include<unordered_set>
#include<iomanip>
#include<cassert>
#include<regex>
#define rep(i,a) for(int i=(int)0;i<(int)a;++i)
#define pb push_back
#define eb emplace_back
using ll=long long;
constexpr ll mod = 1e9 + 7;
constexpr ll INF = 1LL << 50;
 
template<class T> inline bool chmin(T& a, T b) {
    if (a > b) {
        a = b;
        return true;
    }
    return false;
}
template<class T> inline bool chmax(T& a, T b) {
    if (a < b) {
        a = b;
        return true;
    }
    return false;
}
using namespace std;

void solve(){
    int n;
    cin>>n;
    int pre=1,nxt=1,cnt=1;
    bool dp[10020];
    dp[1]=true;
    for(int i=1;i<=n;++i){
        dp[i+__builtin_popcount(i)]|=dp[i];
    }
    for(int i=1;i<=n;++i){
        if(i-__builtin_popcount(i)>0)dp[i-__builtin_popcount(i)] |=dp[i];
    }
    for(int i=1;i<=n;++i){
        dp[i+__builtin_popcount(i)]|=dp[i];
    }
    if(!dp[n]){
        cout<<-1<<"\n";
    }
    else {
        while(nxt!=n){
        if(__builtin_popcount(pre)+pre<=n)nxt=__builtin_popcount(pre)+pre;
        else nxt=pre-__builtin_popcount(pre);
        pre=nxt;
        ++cnt;
    }
    cout<<cnt<<"\n";
    }
}
 
int main(){
	ios::sync_with_stdio(false);
    cin.tie(0);
	cout<<fixed<<setprecision(15);
	solve();
	return 0;
}
0