結果

問題 No.262 面白くないビットすごろく
ユーザー piyoko_212piyoko_212
提出日時 2015-12-28 20:55:20
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 270 ms / 2,000 ms
コード長 687 bytes
コンパイル時間 436 ms
コンパイル使用メモリ 34,636 KB
実行使用メモリ 5,760 KB
最終ジャッジ日時 2024-06-06 03:35:24
合計ジャッジ時間 2,226 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 269 ms
5,760 KB
testcase_01 AC 270 ms
5,760 KB
testcase_02 AC 270 ms
5,760 KB
testcase_03 AC 268 ms
5,504 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:8:26: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    8 |         long long a;scanf("%lld",&a);
      |                     ~~~~~^~~~~~~~~~~

ソースコード

diff #

#include<stdio.h>
#include<algorithm>
using namespace std;
int pc[1<<20];
int to[21][40];
int cost[21][40];
int main(){
	long long a;scanf("%lld",&a);
	for(int i=0;i<(1<<20);i++){
		pc[i]=__builtin_popcount(i);
	}
	for(int i=0;i<21;i++){
		for(int j=0;j<40;j++){
			if(i==0&&j!=1)continue;
			int now=j;
			int cnt=0;
			while(now<(1<<20)){
				now+=pc[now]+i;
				cnt++;
			}
			to[i][j]=now-(1<<20);
			cost[i][j]=cnt;
		}
	}
	long long ret=0;
	long long at=1;
	for(int i=0;i<(a>>20);i++){
		int p=pc[i];
		ret+=cost[p][at];
		at=to[p][at];
	}
	at+=((a>>20)<<20);
	while(at<a){
		ret++;
		at+=pc[at%(1<<20)]+pc[at>>20];
	}
	if(a==at){
		printf("%lld\n",ret+1);
	}else printf("-1\n");
}
0