結果

問題 No.3 ビットすごろく
ユーザー PoronPaPoronPa
提出日時 2019-04-22 22:03:43
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 33 ms / 5,000 ms
コード長 2,288 bytes
コンパイル時間 1,982 ms
コンパイル使用メモリ 108,672 KB
実行使用メモリ 20,352 KB
最終ジャッジ日時 2024-07-01 09:18:28
合計ジャッジ時間 3,531 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 33
権限があれば一括ダウンロードができます
コンパイルメッセージ
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;
class Program
{
    static void Main(string[] args)
    {
        string s = Console.ReadLine();
        int Masu = int.Parse(s);
        Sugoroku Ans = new Sugoroku(Masu);
        Console.WriteLine(Ans.Ans(Masu).ToString());
        Console.ReadLine();
    }
    class Sugoroku
    {
        private IdouCount[] Idou;
        public Sugoroku(int inMaxMasu)
        {
            Idou = new IdouCount[inMaxMasu+1];
            for (int Loop = 1; Loop <= inMaxMasu; Loop++)
            {
                Idou[Loop] = new IdouCount();
            }
            Idou[1].No = 1;

            var que = new Queue<int>();
            int GetSugorokuCount(int inNo)
            {
                string Nisinsuu = Convert.ToString(inNo, 2);
                return Nisinsuu.Where(x => x == '1').Count();
            }
            que.Enqueue(1);
            while (que.Count != 0)
            {
                int CurrentNo = que.Dequeue();
                int PlusMinas = GetSugorokuCount(CurrentNo);
                if (CurrentNo - PlusMinas >= 1)
                {
                    if (!Idou[CurrentNo - PlusMinas].Enable() || Idou[CurrentNo - PlusMinas].No > Idou[CurrentNo].No + 1)
                    {
                        Idou[CurrentNo - PlusMinas].No = Idou[CurrentNo].No + 1;
                        que.Enqueue(CurrentNo - PlusMinas);
                    }
                }
                if (CurrentNo + PlusMinas <= inMaxMasu)
                {
                    if (!Idou[CurrentNo + PlusMinas].Enable() || Idou[CurrentNo + PlusMinas].No > Idou[CurrentNo].No + 1)
                    {
                        Idou[CurrentNo + PlusMinas].No = Idou[CurrentNo].No + 1;
                        que.Enqueue(CurrentNo + PlusMinas);
                    }
                }
            }
        }

        public int Ans(int inMaxMasu) {
            return Idou[inMaxMasu].No;
        }
    }
    class IdouCount {
        private int IdouSuu=-1;
        private bool IdouEnable;
        public bool Enable()
        {
            return IdouEnable;
        }
        public int No
        {
            get { return this.IdouSuu; }
            set { this.IdouSuu = value;IdouEnable = true;}
        }
    }
}
0