結果

問題 No.3 ビットすごろく
ユーザー taktak
提出日時 2019-04-27 23:41:25
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 26 ms / 5,000 ms
コード長 1,559 bytes
コンパイル時間 3,007 ms
コンパイル使用メモリ 107,868 KB
実行使用メモリ 25,956 KB
最終ジャッジ日時 2024-07-01 09:19:12
合計ジャッジ時間 3,100 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
25,956 KB
testcase_01 AC 24 ms
23,788 KB
testcase_02 AC 26 ms
25,816 KB
testcase_03 AC 25 ms
23,728 KB
testcase_04 AC 24 ms
23,792 KB
testcase_05 AC 25 ms
23,656 KB
testcase_06 AC 25 ms
23,684 KB
testcase_07 AC 25 ms
23,856 KB
testcase_08 AC 25 ms
23,860 KB
testcase_09 AC 25 ms
23,728 KB
testcase_10 AC 26 ms
24,044 KB
testcase_11 AC 25 ms
23,408 KB
testcase_12 AC 26 ms
25,856 KB
testcase_13 AC 25 ms
23,912 KB
testcase_14 AC 26 ms
25,480 KB
testcase_15 AC 26 ms
21,808 KB
testcase_16 AC 25 ms
23,536 KB
testcase_17 AC 26 ms
23,568 KB
testcase_18 AC 25 ms
23,792 KB
testcase_19 AC 25 ms
24,048 KB
testcase_20 AC 24 ms
23,792 KB
testcase_21 AC 25 ms
23,728 KB
testcase_22 AC 25 ms
23,920 KB
testcase_23 AC 26 ms
25,748 KB
testcase_24 AC 25 ms
23,788 KB
testcase_25 AC 26 ms
25,828 KB
testcase_26 AC 24 ms
23,404 KB
testcase_27 AC 25 ms
23,532 KB
testcase_28 AC 25 ms
23,944 KB
testcase_29 AC 25 ms
23,428 KB
testcase_30 AC 25 ms
25,940 KB
testcase_31 AC 25 ms
23,860 KB
testcase_32 AC 25 ms
25,720 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;
using System.Threading.Tasks;

namespace YukiCoderCS
{
    class Program
    {
        public static void Main(string[] args) => new Program().Solve();

        int bitCount(int x)
        {
            x = x - ((x >> 1) & 0x55555555);
            x = (x & 0x33333333) + ((x >> 2) & 0x33333333);
            x = (x + (x >> 4)) & 0x0f0f0f0f;
            x = x + (x >> 8);
            x = x + (x >> 16);
            return x & 0x3f;
        }

        void Solve()
        {
            var N = int.Parse(Console.ReadLine());
            var minCosts = new int[N + 1];
            var start = 1;
            var que = new Queue<int>();
            var ans = -1;
            minCosts[start] = 1;
            que.Enqueue(start);
            while (que.Count > 0)
            {
                var x = que.Dequeue();
                if (x == N)
                {
                    ans = minCosts[x];
                    break;
                }
                var bit = bitCount(x);
                var f = x - bit;
                var b = x + bit;
                if (f >= 1 && minCosts[f] == 0)
                {
                    que.Enqueue(f);
                    minCosts[f] = minCosts[x] + 1;
                }
                if (b <= N && minCosts[b] == 0)
                {
                    que.Enqueue(b);
                    minCosts[b] = minCosts[x] + 1;
                }
            }
            Console.WriteLine(ans);                
        }
    }
}
0