結果

問題 No.3 ビットすごろく
ユーザー koinko_gamekoinko_game
提出日時 2019-07-10 23:27:24
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 38 ms / 5,000 ms
コード長 925 bytes
コンパイル時間 825 ms
コンパイル使用メモリ 111,872 KB
実行使用メモリ 28,772 KB
最終ジャッジ日時 2024-07-01 09:24:40
合計ジャッジ時間 2,805 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
24,852 KB
testcase_01 AC 26 ms
24,876 KB
testcase_02 AC 26 ms
24,684 KB
testcase_03 AC 27 ms
24,720 KB
testcase_04 AC 26 ms
24,808 KB
testcase_05 AC 30 ms
26,888 KB
testcase_06 AC 28 ms
26,736 KB
testcase_07 AC 26 ms
24,720 KB
testcase_08 AC 29 ms
24,844 KB
testcase_09 AC 32 ms
24,852 KB
testcase_10 AC 36 ms
24,848 KB
testcase_11 AC 32 ms
24,588 KB
testcase_12 AC 29 ms
24,592 KB
testcase_13 AC 27 ms
26,852 KB
testcase_14 AC 35 ms
22,836 KB
testcase_15 AC 37 ms
24,720 KB
testcase_16 AC 37 ms
22,580 KB
testcase_17 AC 36 ms
24,720 KB
testcase_18 AC 26 ms
24,684 KB
testcase_19 AC 38 ms
26,648 KB
testcase_20 AC 26 ms
24,496 KB
testcase_21 AC 25 ms
24,724 KB
testcase_22 AC 35 ms
24,724 KB
testcase_23 AC 37 ms
24,720 KB
testcase_24 AC 38 ms
24,720 KB
testcase_25 AC 37 ms
26,764 KB
testcase_26 AC 26 ms
24,696 KB
testcase_27 AC 26 ms
24,852 KB
testcase_28 AC 36 ms
24,852 KB
testcase_29 AC 33 ms
24,828 KB
testcase_30 AC 26 ms
26,732 KB
testcase_31 AC 26 ms
28,772 KB
testcase_32 AC 31 ms
26,492 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Linq;
using System.Collections.Generic;
using System.Text;
using static System.Console;
using static System.Math;

class Program
{
    static int[] dp;
    static int N = 0;
    static void Main(string[] args)
    {
        N = int.Parse(ReadLine());
        dp = Enumerable.Repeat(1000000000, 10001).ToArray();
        dp[1] = 1;
        DFS(1);
        WriteLine(dp[N] == 1000000000 ? -1 : dp[N]);
    }
    static void DFS(int from)
    {
        int delta = 0;
        for (int j = 0; j < 32; j++)
            if (((from >> j) & 1) == 1)
                delta++;

        if(N >= from + delta && dp[from + delta] > dp[from] + 1)
        {
            dp[from + delta] = dp[from] + 1;
            DFS(from + delta);
        }

        if(1 <= from - delta && dp[from - delta] > dp[from] + 1)
        {
            dp[from - delta] = dp[from] + 1;
            DFS(from - delta);
        }
    }
}
0