結果
問題 |
No.3 ビットすごろく
|
ユーザー |
![]() |
提出日時 | 2016-04-24 17:55:12 |
言語 | C90 (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 729 bytes |
コンパイル時間 | 315 ms |
コンパイル使用メモリ | 22,656 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-04 15:38:42 |
合計ジャッジ時間 | 1,746 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | WA * 30 RE * 3 |
コンパイルメッセージ
main.c: In function ‘main’: main.c:42:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 42 | scanf("%d", &n); | ^~~~~~~~~~~~~~~
ソースコード
#include <stdio.h> #include <stdlib.h> #include <string.h> int bit_count(int a) { int i = 0; while(a) { i++; a &= (a-1); } return i; } int search(int *a, int n) { int b[10001], i, j, cnt = 0; memcpy(b, a, n*4+4); for( i = 0; i <= n; i++) { if(b[i]) { int t = bit_count(i); printf("%d の時 bit_count=%d\n", i, t); if(!b[i+t] || b[i+t] > b[i]+1) { b[i+t] = b[i]+1; cnt++; } if(i-t > 0){ if(!b[i-t] || b[i-t] > b[i]+1) { b[i-t] = b[i]+1; cnt++; } } } } memcpy(a, b, n*4+4); return cnt; } int main(void) { int n, i, a[10001] = {0, 1}; scanf("%d", &n); while(i = search(a, n)); if(!a[n]) { printf("-1\n"); } else { printf("%d\n", a[n]); } return 0; }