結果

問題 No.3 ビットすごろく
ユーザー oemonoemon
提出日時 2016-11-24 22:53:19
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,082 bytes
コンパイル時間 713 ms
コンパイル使用メモリ 104,448 KB
実行使用メモリ 18,048 KB
最終ジャッジ日時 2024-05-05 13:08:49
合計ジャッジ時間 2,361 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 20 ms
17,536 KB
testcase_01 AC 21 ms
17,920 KB
testcase_02 AC 20 ms
17,920 KB
testcase_03 AC 20 ms
17,536 KB
testcase_04 AC 19 ms
17,408 KB
testcase_05 AC 19 ms
17,536 KB
testcase_06 AC 18 ms
17,664 KB
testcase_07 AC 19 ms
17,792 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 22 ms
17,792 KB
testcase_13 AC 20 ms
17,536 KB
testcase_14 AC 20 ms
17,792 KB
testcase_15 AC 19 ms
17,792 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 20 ms
17,920 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 20 ms
17,920 KB
testcase_22 AC 20 ms
17,792 KB
testcase_23 AC 21 ms
17,536 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 20 ms
17,920 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 18 ms
17,536 KB
testcase_32 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

namespace No3
{
    class Program
    {
        private static int N;
        private static bool[] map;

        static void Main(string[] args)
        {
            N = int.Parse(Console.ReadLine());
            map = new bool[N];

            var result = Rec(0);
            Console.Write(result);
        }

        static int Rec(int index)
        {
            if (index == N - 1) return 1;
            if (index < 0) return -1;
            if (index >= N) return -1;
            if (map[index]) return -1;

            map[index] = true;

            var count = 0;
            for (var i = 0; i < 32; i++)
            {
                var tmp = 1 << i;
                if ((index + 1 & tmp) != 0) count++;
            }

            var front = Rec(index + count);
            var back = Rec(index - count);

            if (front == -1)
            {
                return back == -1 ? -1 : back + 1;
            }
            else
            {
                return back == -1 ? front + 1 : Math.Min(front, back) + 1;
            }
        }
    }
}
0