結果

問題 No.3 ビットすごろく
ユーザー ProgramingWeProgramingWe
提出日時 2017-10-31 11:06:20
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 31 ms / 5,000 ms
コード長 1,712 bytes
コンパイル時間 814 ms
コンパイル使用メモリ 110,852 KB
実行使用メモリ 28,052 KB
最終ジャッジ日時 2024-07-01 08:50:06
合計ジャッジ時間 2,739 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
24,200 KB
testcase_01 AC 25 ms
24,112 KB
testcase_02 AC 24 ms
23,856 KB
testcase_03 AC 26 ms
21,812 KB
testcase_04 AC 25 ms
23,980 KB
testcase_05 AC 28 ms
24,092 KB
testcase_06 AC 26 ms
25,980 KB
testcase_07 AC 26 ms
23,940 KB
testcase_08 AC 27 ms
24,064 KB
testcase_09 AC 29 ms
23,804 KB
testcase_10 AC 30 ms
26,116 KB
testcase_11 AC 29 ms
23,808 KB
testcase_12 AC 28 ms
24,116 KB
testcase_13 AC 26 ms
26,088 KB
testcase_14 AC 31 ms
25,864 KB
testcase_15 AC 31 ms
26,128 KB
testcase_16 AC 31 ms
25,996 KB
testcase_17 AC 31 ms
26,000 KB
testcase_18 AC 26 ms
23,600 KB
testcase_19 AC 31 ms
28,040 KB
testcase_20 AC 25 ms
25,968 KB
testcase_21 AC 24 ms
23,932 KB
testcase_22 AC 30 ms
25,868 KB
testcase_23 AC 31 ms
25,896 KB
testcase_24 AC 31 ms
25,868 KB
testcase_25 AC 31 ms
25,888 KB
testcase_26 AC 25 ms
23,812 KB
testcase_27 AC 27 ms
26,104 KB
testcase_28 AC 31 ms
28,052 KB
testcase_29 AC 30 ms
27,800 KB
testcase_30 AC 25 ms
24,052 KB
testcase_31 AC 25 ms
23,928 KB
testcase_32 AC 28 ms
25,864 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.Text;

namespace ConsoleApplication2
{
    class Program
    {
        static void Main(string[] args)
        {
            int N = int.Parse(Console.ReadLine());
            int[] map = new int[N + 1];
            map[1] = 1;
            Queue<int> q = new Queue<int>();
            q.Enqueue(1);
            while (q.Count > 0)
            {
                int count = 0;
                int search = q.Dequeue();
                int step = map[search];
                string strR = Convert.ToString(search, 2);
                char[] cR = new char[strR.Length];
                for (int i = 0; i < strR.Length; i++)
                {
                    cR[i] = strR[i];
                }

                for (int i = 0; i < cR.Length; i++)
                {
                    if (cR[i].ToString() == "1")
                    {
                        count++;
                    }
                }
                int[] node = new int[2];
                node[0] = search - count;
                node[1] = search + count;

                foreach (int next in node)
                {
                    if (1 >= next || next > N)
                    {
                        continue;
                    }
                    if (map[next] == 0 || map[next] > step + 1)
                    {
                        map[next] = step + 1;
                        q.Enqueue(next);
                    }
                }
            }
            if (map[N] == 0)
            {
                Console.WriteLine(-1);
            }
            else
            {
                Console.WriteLine(map[N]);
            }
        }
    }
}
0