結果

問題 No.3 ビットすごろく
ユーザー AdamantiteAdamantite
提出日時 2023-06-29 21:19:49
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 2,560 ms / 5,000 ms
コード長 1,161 bytes
コンパイル時間 6,613 ms
コンパイル使用メモリ 166,976 KB
実行使用メモリ 210,220 KB
最終ジャッジ日時 2024-07-06 11:25:45
合計ジャッジ時間 31,546 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
30,208 KB
testcase_01 AC 51 ms
30,060 KB
testcase_02 AC 48 ms
30,208 KB
testcase_03 AC 64 ms
33,792 KB
testcase_04 AC 50 ms
30,720 KB
testcase_05 AC 165 ms
55,040 KB
testcase_06 AC 67 ms
34,048 KB
testcase_07 AC 61 ms
32,768 KB
testcase_08 AC 88 ms
42,368 KB
testcase_09 AC 509 ms
55,168 KB
testcase_10 AC 1,232 ms
55,808 KB
testcase_11 AC 333 ms
55,296 KB
testcase_12 AC 131 ms
54,876 KB
testcase_13 AC 66 ms
33,408 KB
testcase_14 AC 1,053 ms
55,772 KB
testcase_15 AC 2,363 ms
57,472 KB
testcase_16 AC 1,608 ms
55,936 KB
testcase_17 AC 2,253 ms
57,344 KB
testcase_18 AC 69 ms
33,152 KB
testcase_19 AC 2,556 ms
63,360 KB
testcase_20 AC 49 ms
30,336 KB
testcase_21 AC 47 ms
30,208 KB
testcase_22 AC 1,112 ms
55,808 KB
testcase_23 AC 2,560 ms
63,360 KB
testcase_24 AC 2,549 ms
63,452 KB
testcase_25 AC 2,455 ms
57,344 KB
testcase_26 AC 47 ms
29,824 KB
testcase_27 AC 65 ms
33,536 KB
testcase_28 AC 1,481 ms
55,808 KB
testcase_29 AC 365 ms
55,296 KB
testcase_30 AC 49 ms
30,080 KB
testcase_31 AC 47 ms
30,080 KB
testcase_32 AC 245 ms
210,220 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (81 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();
                if(x == n) {
                    break;
                }
                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