結果

問題 No.3 ビットすごろく
ユーザー _matumo__matumo_
提出日時 2018-06-02 23:13:15
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,210 bytes
コンパイル時間 2,282 ms
コンパイル使用メモリ 115,188 KB
実行使用メモリ 27,352 KB
最終ジャッジ日時 2024-06-30 09:09:40
合計ジャッジ時間 2,986 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
24,928 KB
testcase_01 AC 28 ms
25,052 KB
testcase_02 AC 27 ms
27,072 KB
testcase_03 AC 28 ms
24,804 KB
testcase_04 AC 28 ms
26,808 KB
testcase_05 AC 29 ms
27,352 KB
testcase_06 AC 28 ms
25,200 KB
testcase_07 AC 27 ms
25,004 KB
testcase_08 AC 28 ms
27,128 KB
testcase_09 AC 29 ms
25,124 KB
testcase_10 AC 29 ms
25,056 KB
testcase_11 AC 29 ms
24,996 KB
testcase_12 AC 29 ms
25,132 KB
testcase_13 AC 28 ms
27,204 KB
testcase_14 AC 32 ms
26,972 KB
testcase_15 AC 31 ms
25,184 KB
testcase_16 AC 31 ms
22,964 KB
testcase_17 AC 31 ms
27,220 KB
testcase_18 AC 28 ms
24,796 KB
testcase_19 AC 31 ms
25,052 KB
testcase_20 AC 28 ms
24,800 KB
testcase_21 WA -
testcase_22 AC 29 ms
24,932 KB
testcase_23 AC 30 ms
25,164 KB
testcase_24 AC 31 ms
25,040 KB
testcase_25 AC 31 ms
24,804 KB
testcase_26 WA -
testcase_27 AC 28 ms
26,980 KB
testcase_28 AC 29 ms
25,032 KB
testcase_29 AC 30 ms
24,932 KB
testcase_30 AC 28 ms
24,796 KB
testcase_31 AC 29 ms
22,708 KB
testcase_32 AC 29 ms
25,232 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.Collections.Generic;
using System.Linq;
using System.Text;

namespace YukiCoder
{
    class Program
    {
        static int[] bitCnt = new int[] { 0, 1, 1, 2, 1, 2, 2, 3, 1, 2, 2, 3, 2, 3, 3, 4 };
        static int[] pnStep;
        static int nMax;

        static int pnBitN(int ni)
        {
            return bitCnt[ni % 16]
                 + bitCnt[ni / 16 % 16]
                 + bitCnt[ni / 16 / 16 % 16]
                 + bitCnt[ni / 16 / 16 / 16 % 16];
        }

        static int zzz(int ns, int ni)
        {
            if (ni < 1 || ni > nMax) return nMax;
            if (ni == nMax) return 1;

            if (ns >= pnStep[ni]) return nMax;
            pnStep[ni] = ns;

            int n = pnBitN(ni);
            int na = zzz(ns + 1, ni + n);
            int nb = zzz(ns + 1, ni - n);
            return (na < nb ? na : nb) + 1;
        }

        static void Main(string[] args)
        {
            nMax = int.Parse(Console.ReadLine());
            pnStep = (new Int32[nMax]).Select(s => nMax).ToArray();
            int n = zzz(1, 1);
            if (n >= nMax) n = -1;
            Console.WriteLine(n);
            Console.ReadLine();
        }
    }
}
0