結果

問題 No.3 ビットすごろく
ユーザー AdamantiteAdamantite
提出日時 2023-06-29 21:33:41
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 526 ms / 5,000 ms
コード長 1,357 bytes
コンパイル時間 16,759 ms
コンパイル使用メモリ 168,728 KB
実行使用メモリ 184,564 KB
最終ジャッジ日時 2024-07-06 11:39:59
合計ジャッジ時間 18,488 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
29,440 KB
testcase_01 AC 49 ms
29,696 KB
testcase_02 AC 47 ms
29,440 KB
testcase_03 AC 64 ms
30,848 KB
testcase_04 AC 52 ms
29,184 KB
testcase_05 AC 74 ms
30,720 KB
testcase_06 AC 64 ms
30,720 KB
testcase_07 AC 67 ms
30,720 KB
testcase_08 AC 69 ms
30,592 KB
testcase_09 AC 133 ms
31,344 KB
testcase_10 AC 237 ms
31,744 KB
testcase_11 AC 105 ms
31,488 KB
testcase_12 AC 75 ms
30,848 KB
testcase_13 AC 63 ms
30,720 KB
testcase_14 AC 204 ms
32,000 KB
testcase_15 AC 445 ms
32,640 KB
testcase_16 AC 301 ms
31,872 KB
testcase_17 AC 410 ms
32,768 KB
testcase_18 AC 63 ms
30,720 KB
testcase_19 AC 518 ms
34,816 KB
testcase_20 AC 52 ms
29,440 KB
testcase_21 AC 50 ms
29,440 KB
testcase_22 AC 218 ms
32,000 KB
testcase_23 AC 517 ms
34,816 KB
testcase_24 AC 526 ms
34,944 KB
testcase_25 AC 459 ms
32,640 KB
testcase_26 AC 49 ms
29,440 KB
testcase_27 AC 64 ms
30,716 KB
testcase_28 AC 277 ms
31,744 KB
testcase_29 AC 105 ms
31,232 KB
testcase_30 AC 49 ms
29,436 KB
testcase_31 AC 48 ms
29,440 KB
testcase_32 AC 90 ms
184,564 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (94 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;
using System.Collections.Generic;

namespace No00003_BitSugoroku
{
    internal 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 (0 < q.Count) {
                int x = q.Dequeue();
                if(x == n) {
                    break;
                }
                int diff = BitCount(x);

                if (x + diff <= n) {
                    if (map[x + diff] == 0 || map[x] < map[x + diff]) {
                        q.Enqueue(x + diff);
                        map[x + diff] = map[x] + 1;
                    }
                }
                if (0 < x - diff) {
                    if (map[x - diff] == 0 || map[x] < map[x - diff]) {
                        q.Enqueue(x - diff);
                        map[x - diff] = map[x] + 1;
                    }
                }
            }
            Console.WriteLine(map[n] == 0 ? -1: map[n]);
        }

        static int BitCount(int x) {
            int count = 0;
            while (0 < x) {
                if(x % 2 == 1) {
                    count++;
                }
                x /= 2;
            }
            return count;
        }
    }
}
0