結果

問題 No.3 ビットすごろく
ユーザー itezpaceitezpace
提出日時 2016-09-30 08:39:46
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 1,097 bytes
コンパイル時間 573 ms
コンパイル使用メモリ 56,624 KB
実行使用メモリ 82,240 KB
最終ジャッジ日時 2024-11-21 11:07:23
合計ジャッジ時間 164,237 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <bitset>
#include <climits>
using namespace std;
int N;
int ary[10001];
int ans=INT_MAX;
void calc(int pos,int cnt,int ary_v[]){
  if(pos==N){
    if(ans>cnt) ans=cnt;
  } else {
    for(int i=0;i<2;++i){
      if(i==0){
        int pos2=pos+ary[pos];
        int cnt2=cnt+1;
        if(pos2>N) continue;
        if(ary_v[pos2]==1) continue;
        int ary_v2[N+1];
        for(int i2=0;i2<N+1;++i2){
          ary_v2[i2]=ary_v[i2];
        }
        ary_v2[pos2]=1;
        calc(pos2,cnt2,ary_v2);
      } else {
        int pos2=pos-ary[pos];
        int cnt2=cnt+1;
        if(pos2<1) continue;
        if(ary_v[pos2]==1) continue;
        int ary_v2[N+1];
        for(int i2=0;i2<N+1;++i2){
          ary_v2[i2]=ary_v[i2];
        }
        ary_v2[pos2]=1;
        calc(pos2,cnt2,ary_v2);
      }
    }
  }
}
int main(){
  cin>>N;
  for(int i=1;i<=N;++i){
    bitset<16> bs(i);
    int a=bs.count();
    ary[i]=a;
  }
  int ary_v[N+1];
  for(int i=0;i<N+1;++i){
    ary_v[i]=0;
  }
  ary_v[1]=1;
  calc(1,1,ary_v);
  if(ans==INT_MAX) ans=-1;
  cout<<ans<<endl;
}
0