結果

問題 No.3 ビットすごろく
ユーザー nemuneminemunemi
提出日時 2021-02-06 20:09:43
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 26 ms / 5,000 ms
コード長 2,138 bytes
コンパイル時間 987 ms
コンパイル使用メモリ 113,036 KB
実行使用メモリ 27,012 KB
最終ジャッジ日時 2024-07-03 08:07:31
合計ジャッジ時間 2,855 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
24,716 KB
testcase_01 AC 22 ms
24,972 KB
testcase_02 AC 23 ms
24,976 KB
testcase_03 AC 23 ms
24,756 KB
testcase_04 AC 24 ms
24,776 KB
testcase_05 AC 25 ms
26,736 KB
testcase_06 AC 23 ms
22,804 KB
testcase_07 AC 24 ms
26,832 KB
testcase_08 AC 23 ms
26,844 KB
testcase_09 AC 25 ms
24,716 KB
testcase_10 AC 25 ms
24,972 KB
testcase_11 AC 24 ms
26,736 KB
testcase_12 AC 23 ms
22,964 KB
testcase_13 AC 22 ms
24,780 KB
testcase_14 AC 23 ms
22,832 KB
testcase_15 AC 24 ms
24,852 KB
testcase_16 AC 24 ms
24,968 KB
testcase_17 AC 25 ms
24,836 KB
testcase_18 AC 24 ms
24,596 KB
testcase_19 AC 25 ms
24,848 KB
testcase_20 AC 24 ms
24,908 KB
testcase_21 AC 23 ms
24,880 KB
testcase_22 AC 26 ms
26,744 KB
testcase_23 AC 26 ms
24,720 KB
testcase_24 AC 25 ms
27,012 KB
testcase_25 AC 23 ms
22,964 KB
testcase_26 AC 25 ms
24,592 KB
testcase_27 AC 24 ms
24,672 KB
testcase_28 AC 25 ms
26,756 KB
testcase_29 AC 24 ms
22,960 KB
testcase_30 AC 23 ms
24,592 KB
testcase_31 AC 23 ms
26,824 KB
testcase_32 AC 23 ms
24,752 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;
using System.Collections.Generic;
using System.Linq;
using System.Text.RegularExpressions;

namespace PProgram
{
    class Program
    {
        static void Main(string[] args)
        {

            int Masu = int.Parse(Console.ReadLine());

            var myQ = new Queue();
            bool[] Tansakuzumi = Enumerable.Repeat(false,Masu + 1).ToArray();
            int[] KaisuKiroku = Enumerable.Repeat(0, Masu + 1).ToArray();

            myQ.Enqueue(1);
            KaisuKiroku[1] = 1;

            while(myQ.Count != 0)
            {
                var target = (int)myQ.Dequeue();

                int idoukyori = BitCount(target);

                int NextIndex = target + idoukyori;

                if( 1 <= NextIndex && NextIndex <= Masu)
                {
                    if(!Tansakuzumi[NextIndex])
                    {
                        myQ.Enqueue(NextIndex);
                        Tansakuzumi[NextIndex] = true;
                        KaisuKiroku[NextIndex] = KaisuKiroku[target] + 1;
                    }
                }

                NextIndex = target - idoukyori;
                if(1 <= NextIndex && NextIndex <= Masu)
                {
                    if(!Tansakuzumi[NextIndex])
                    {
                        myQ.Enqueue(NextIndex);
                        Tansakuzumi[NextIndex] = true;
                        KaisuKiroku[NextIndex] = KaisuKiroku[target] + 1;
                    }
                }
            }

            if (KaisuKiroku[Masu] == 0)
            {
                Console.WriteLine(-1);
            }
            else
            {
                Console.WriteLine(KaisuKiroku[Masu]);
            }

        }
        
        private static int BitCount (int number)
        {
            int bitCount = 0;

            for(int i = 0; number > 0; i++)
            {
                int onezero = number % 2;
                if(onezero == 1)
                {
                    bitCount++;
                }

                number = number / 2;
            }

            return bitCount;
        }
    }
}
0