結果

問題 No.3 ビットすごろく
ユーザー AdamantiteAdamantite
提出日時 2023-06-29 21:17:46
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 2,474 ms / 5,000 ms
コード長 1,087 bytes
コンパイル時間 18,331 ms
コンパイル使用メモリ 168,800 KB
実行使用メモリ 211,904 KB
最終ジャッジ日時 2024-07-06 11:24:08
合計ジャッジ時間 36,733 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
30,208 KB
testcase_01 AC 47 ms
30,080 KB
testcase_02 AC 43 ms
30,044 KB
testcase_03 AC 59 ms
33,900 KB
testcase_04 AC 44 ms
30,592 KB
testcase_05 AC 136 ms
55,040 KB
testcase_06 AC 62 ms
34,048 KB
testcase_07 AC 57 ms
32,640 KB
testcase_08 AC 87 ms
42,496 KB
testcase_09 AC 496 ms
55,296 KB
testcase_10 AC 1,159 ms
55,936 KB
testcase_11 AC 320 ms
55,276 KB
testcase_12 AC 123 ms
54,912 KB
testcase_13 AC 59 ms
33,372 KB
testcase_14 AC 981 ms
55,788 KB
testcase_15 AC 2,273 ms
57,344 KB
testcase_16 AC 1,517 ms
55,680 KB
testcase_17 AC 2,180 ms
57,472 KB
testcase_18 AC 59 ms
33,152 KB
testcase_19 AC 2,462 ms
63,488 KB
testcase_20 AC 45 ms
30,464 KB
testcase_21 AC 43 ms
30,196 KB
testcase_22 AC 1,096 ms
55,936 KB
testcase_23 AC 2,463 ms
63,616 KB
testcase_24 AC 2,474 ms
63,488 KB
testcase_25 AC 2,282 ms
57,436 KB
testcase_26 AC 45 ms
30,080 KB
testcase_27 AC 60 ms
33,792 KB
testcase_28 AC 1,420 ms
55,772 KB
testcase_29 AC 334 ms
55,552 KB
testcase_30 AC 46 ms
30,080 KB
testcase_31 AC 43 ms
30,080 KB
testcase_32 AC 230 ms
211,904 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (79 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;
using System.Linq;

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();
                int diff = Convert.ToString(x, 2).Count(x => x == '1');

                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]);
        }
    }
}
0