結果
問題 | No.3 ビットすごろく |
ユーザー | te-sh |
提出日時 | 2016-08-27 18:12:12 |
言語 | D (dmd 2.106.1) |
結果 |
TLE
|
実行時間 | - |
コード長 | 816 bytes |
コンパイル時間 | 820 ms |
コンパイル使用メモリ | 106,256 KB |
実行使用メモリ | 77,116 KB |
最終ジャッジ日時 | 2024-06-12 03:45:53 |
合計ジャッジ時間 | 20,410 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
77,116 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 17 ms
6,944 KB |
testcase_04 | AC | 4 ms
6,944 KB |
testcase_05 | AC | 285 ms
33,576 KB |
testcase_06 | AC | 20 ms
6,944 KB |
testcase_07 | AC | 8 ms
6,940 KB |
testcase_08 | AC | 97 ms
13,860 KB |
testcase_09 | AC | 1,859 ms
62,996 KB |
testcase_10 | AC | 4,965 ms
67,336 KB |
testcase_11 | AC | 1,104 ms
63,088 KB |
testcase_12 | AC | 227 ms
25,584 KB |
testcase_13 | AC | 12 ms
6,940 KB |
testcase_14 | AC | 4,164 ms
67,048 KB |
testcase_15 | TLE | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
ソースコード
import std.algorithm, std.array, std.range; import std.string, std.conv; import std.math; import std.stdio, std.typecons; alias Tuple!(int, "p", int, "c") qitem; void main() { auto n = readln.chomp.to!int; writeln(calc(n)); } int calc(int n) { auto q = [qitem(1, 1)]; auto visited = new bool[n + 1]; while (!q.empty) { auto qi = q.front; q.popFront; visited[qi.p] = true; if (qi.p == n) { return qi.c; } else { auto b = bits(qi.p); auto p1 = qi.p - b; if (p1 >= 1 && !visited[p1]) q ~= qitem(p1, qi.c + 1); auto p2 = qi.p + b; if (p2 <= n && !visited[p2]) q ~= qitem(p2, qi.c + 1); } } return -1; } int bits(int n) { auto c = 0; while (n > 0) { if ((n & 1) == 1) c += 1; n >>= 1; } return c; }