結果

問題 No.3 ビットすごろく
ユーザー kiwikiwi
提出日時 2017-12-02 15:40:00
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 889 bytes
コンパイル時間 649 ms
コンパイル使用メモリ 56,444 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-06 01:43:41
合計ジャッジ時間 1,587 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 2 ms
5,376 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 2 ms
5,376 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 1 ms
5,376 KB
testcase_32 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:28:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   28 |         scanf("%d",&N);
      |         ~~~~~^~~~~~~~~

ソースコード

diff #

//586.cpp
#include <vector>
#include <iostream>
#include <cstdio>
#define rep(i,n) for(int i=1;i<=N;i++)
using namespace std;
typedef unsigned long ul;
typedef pair<ul, ul> P;

int sugoroku[10001],N;
int flag[10001];
int gosu(int i,int s){
	if(i == N)return s;
	if(flag[i] > 0) return 100001;
	flag[i] = s;

	int j,k;
	j = i - sugoroku[i];
	k = i + sugoroku[i];
	if(j > 0 && k <= N) return min(gosu(j,s+1),gosu(k,s+1));
	else if(j <= 0 && k <= N) return gosu(k,s+1);
	else if(j > 0 && k > N) return gosu(j,s+1);
	else	return 100001;
}

int main() {
	int i=1,ans;
	scanf("%d",&N);
	//すごろくのすすめるマス数決定
	rep(i,N){
		int decimal = i,base=1;
		sugoroku[i] = 0;
		flag[i] = -1;
		while(decimal > 0){
			sugoroku[i] += decimal%2;
			decimal /= 2;
			base *= 10;
		}
	}
	ans = gosu(1,1);
	if(ans > 0 && ans < 10000)printf("%d\n",ans);
	else	printf("-1\n");

	return 0;
}
0