結果

問題 No.3 ビットすごろく
ユーザー eiken7kyuueiken7kyuu
提出日時 2019-06-07 09:06:56
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 65 ms / 5,000 ms
コード長 3,331 bytes
コンパイル時間 923 ms
コンパイル使用メモリ 66,440 KB
実行使用メモリ 23,620 KB
最終ジャッジ日時 2023-09-14 01:18:51
合計ジャッジ時間 4,325 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
21,424 KB
testcase_01 AC 59 ms
21,516 KB
testcase_02 AC 59 ms
21,776 KB
testcase_03 AC 61 ms
21,500 KB
testcase_04 AC 60 ms
23,420 KB
testcase_05 AC 63 ms
21,620 KB
testcase_06 AC 62 ms
21,556 KB
testcase_07 AC 60 ms
21,628 KB
testcase_08 AC 61 ms
21,516 KB
testcase_09 AC 63 ms
21,484 KB
testcase_10 AC 63 ms
21,464 KB
testcase_11 AC 63 ms
21,496 KB
testcase_12 AC 62 ms
21,592 KB
testcase_13 AC 61 ms
21,560 KB
testcase_14 AC 64 ms
21,516 KB
testcase_15 AC 65 ms
23,560 KB
testcase_16 AC 64 ms
23,524 KB
testcase_17 AC 64 ms
21,620 KB
testcase_18 AC 61 ms
23,608 KB
testcase_19 AC 64 ms
21,512 KB
testcase_20 AC 59 ms
21,620 KB
testcase_21 AC 59 ms
21,692 KB
testcase_22 AC 63 ms
21,564 KB
testcase_23 AC 64 ms
19,360 KB
testcase_24 AC 64 ms
21,448 KB
testcase_25 AC 64 ms
21,544 KB
testcase_26 AC 57 ms
21,480 KB
testcase_27 AC 59 ms
23,620 KB
testcase_28 AC 63 ms
21,584 KB
testcase_29 AC 62 ms
23,500 KB
testcase_30 AC 60 ms
23,564 KB
testcase_31 AC 60 ms
21,488 KB
testcase_32 AC 62 ms
21,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

using System;
using System.Collections.Generic;
using System.Linq;
using static System.Math;

namespace ConsoleApp1
{
    class Program
    {
        static void Main(string[] args)
        {
            A();
        }

        static void A()
        {
            var N = ReadInt();
            var masu = new int[N + 1];
            masu[1] = 1;

            var queue = new Queue<List<int>>();
            queue.Enqueue(new List<int> { 1, 1 });

            while (queue.Count > 0)
            {
                var q = queue.Dequeue();
                var n = q[0];
                var depth = q[1];

                if (n == N)
                {
                    Println(depth);
                    return;
                }

                var idouryou = Convert.ToString(n, 2).Count(x => x == '1');
                if (n + idouryou <= N && masu[n + idouryou] == 0)
                {
                    masu[n + idouryou] = 1;
                    queue.Enqueue(new List<int> { n + idouryou, depth + 1 });
                }

                if (n - idouryou > 0 && masu[n - idouryou] == 0)
                {
                    masu[n - idouryou] = 1;
                    queue.Enqueue(new List<int> { n - idouryou, depth + 1 });
                }
            }

            Println(-1);
        }

        static IEnumerable<int> Range(int start, int stop)
        {
            if (start < 0 || stop < 0 || start > stop || (start <= 0 && stop <= 0))
                return new List<int>();

            return Enumerable.Range(start, stop - start);
        }

        static bool IsDigit(string str)
        {
            var i = 0;
            return int.TryParse(str, out i);
        }

        static int DigitsSum(long num)
        {
            return num.ToString().Select(x => x.ToString()).Sum(int.Parse);
        }

        static int[] ToIntArray(string str)
        {
            return str.Select(x => x.ToString()).Select(int.Parse).ToArray();
        }

        static int Gcd(int a, int b) => b == 0 ? a : Gcd(b, a % b);

        static bool IsPrime(int x)
        {
            if (x <= 1 || (x != 2 && x % 2 == 0)) return false;
            if (x == 2) return true;

            for (int i = 3; i < x; i += 2)
                if (x % i == 0) return false;

            return true;
        }

        static string Read() => Console.ReadLine();
        static int ReadInt() => int.Parse(Read());
        static long ReadLong() => long.Parse(Read());

        static List<string> ReadSplit() => Read().Split().ToList();
        static List<int> ReadSplitInt() => Read().Split().Select(int.Parse).ToList();
        static List<long> ReadSplitLong() => Read().Split().Select(long.Parse).ToList();

        static void Print(object value) => Console.Write(value.ToString());
        static void Println(object value) => Console.WriteLine(value.ToString());

        static string Join<T>(IEnumerable<T> list) => string.Join("", list);
    }

    public static class MyExtensions
    {
        public static string Slice(this string str, int start = 0, int stop = 0)
        {
            if (start > str.Length || stop > str.Length || start < 0 || stop < 0)
                return "";

            if (stop == 0) stop = str.Length;
            return str.Substring(start, stop - start);
        }
    }
}
0