結果
問題 | No.3 ビットすごろく |
ユーザー | oba |
提出日時 | 2014-12-24 09:58:52 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 1,194 bytes |
コンパイル時間 | 528 ms |
コンパイル使用メモリ | 62,768 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-12 04:54:05 |
合計ジャッジ時間 | 1,732 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 3 ms
6,944 KB |
testcase_09 | AC | 3 ms
6,940 KB |
testcase_10 | AC | 3 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | AC | 2 ms
6,944 KB |
testcase_14 | AC | 3 ms
6,944 KB |
testcase_15 | AC | 3 ms
6,940 KB |
testcase_16 | AC | 3 ms
6,944 KB |
testcase_17 | AC | 3 ms
6,940 KB |
testcase_18 | AC | 2 ms
6,940 KB |
testcase_19 | AC | 3 ms
6,940 KB |
testcase_20 | AC | 1 ms
6,944 KB |
testcase_21 | AC | 2 ms
6,944 KB |
testcase_22 | AC | 3 ms
6,940 KB |
testcase_23 | AC | 3 ms
6,940 KB |
testcase_24 | AC | 3 ms
6,944 KB |
testcase_25 | AC | 3 ms
6,944 KB |
testcase_26 | WA | - |
testcase_27 | AC | 2 ms
6,940 KB |
testcase_28 | AC | 3 ms
6,944 KB |
testcase_29 | AC | 2 ms
6,944 KB |
testcase_30 | AC | 2 ms
6,940 KB |
testcase_31 | AC | 2 ms
6,944 KB |
testcase_32 | AC | 3 ms
6,940 KB |
ソースコード
#include <iostream> #include <algorithm> #include <vector> #define REP(a, b) for(int a=0; a<(int)b; a++) using namespace std; int bit(int num){ int cnt=0; while(num!=0){ if((num&1) == 1) cnt++; num /= 2; } return cnt; } int main(){ int N; int min_num = -1; bool flag = false; int cnt = 0; cin >> N; vector <int> sugoroku; sugoroku.resize(N+1); sugoroku[1] = 1; while(true){ flag = false; REP(i, N-1){ int pos = i+1; if(sugoroku[pos]==0) continue; int nextpos = bit(pos)+pos; if(nextpos <= N){ int nowcnt = sugoroku[nextpos]; sugoroku[nextpos] = (sugoroku[nextpos]==0) ? sugoroku[pos]+1 : min(sugoroku[pos]+1, sugoroku[nextpos]); if(nowcnt != sugoroku[nextpos]) flag = true; } nextpos = pos - bit(pos); if(nextpos >= 1){ int nowcnt = sugoroku[nextpos]; sugoroku[nextpos] = (sugoroku[nextpos]==0) ? sugoroku[pos]+1 : min(sugoroku[pos]+1, sugoroku[nextpos]); if(nowcnt != sugoroku[nextpos]) flag = true; } } // REP(i, N) cout << sugoroku[i+1] << ", "; //cout << endl; if(!flag) break; if(sugoroku[N]!=0) min_num = (min_num==-1)? sugoroku[N] : min(min_num,sugoroku[N]); } cout << min_num << endl; return 0; }