結果

問題 No.3 ビットすごろく
ユーザー WagiHOHWagiHOH
提出日時 2016-07-08 10:58:37
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 55 ms / 5,000 ms
コード長 1,157 bytes
コンパイル時間 780 ms
コンパイル使用メモリ 98,200 KB
実行使用メモリ 7,324 KB
最終ジャッジ日時 2024-06-12 03:37:23
合計ジャッジ時間 2,126 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 5 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 19 ms
7,240 KB
testcase_06 AC 6 ms
6,940 KB
testcase_07 AC 4 ms
6,940 KB
testcase_08 AC 14 ms
7,164 KB
testcase_09 AC 27 ms
7,160 KB
testcase_10 AC 45 ms
7,156 KB
testcase_11 AC 24 ms
7,180 KB
testcase_12 AC 17 ms
7,188 KB
testcase_13 AC 5 ms
6,940 KB
testcase_14 AC 41 ms
7,220 KB
testcase_15 AC 51 ms
7,200 KB
testcase_16 AC 49 ms
7,140 KB
testcase_17 AC 51 ms
7,324 KB
testcase_18 AC 5 ms
6,940 KB
testcase_19 AC 55 ms
7,204 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 1 ms
6,944 KB
testcase_22 AC 43 ms
7,136 KB
testcase_23 AC 53 ms
7,204 KB
testcase_24 AC 52 ms
7,172 KB
testcase_25 AC 53 ms
7,224 KB
testcase_26 AC 1 ms
6,944 KB
testcase_27 AC 5 ms
6,944 KB
testcase_28 AC 49 ms
7,184 KB
testcase_29 AC 25 ms
7,164 KB
testcase_30 AC 1 ms
6,944 KB
testcase_31 AC 1 ms
6,940 KB
testcase_32 AC 21 ms
7,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio;
import std.string;
import std.conv;
import std.algorithm;
import std.range;
import core.bitop;

struct Block
{
    uint bits;
    bool forward, backward;
    uint optimum = uint.max;
}

void main()
{
    immutable n = readln.chomp.to!uint;
    auto game = new Block[n + 1];
    foreach (i, ref x; game) x.bits = popcnt(cast(uint)i);
    uint[] route = [1];
    do {
        auto point = route.back;
        if (point < 1 || point > n) {
            route.popBack;
            continue;
        }
        with (game[point]) {
            if (optimum > route.length) {
                optimum = cast(uint)route.length;
                forward = backward = false;
            }
            if (optimum < route.length) {
                route.popBack;
                continue;
            }
            if (!forward) {
                route ~= point + bits;
                forward = true;
            } else if (!backward) {
                route ~= point - bits;
                backward = true;
            } else {
                route.popBack;
            }
        }
    } while (!route.empty);
    writeln(cast(int)game[n].optimum);
}
0