結果

問題 No.3 ビットすごろく
ユーザー outoforderoutoforder
提出日時 2017-07-22 22:25:06
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 38 ms / 5,000 ms
コード長 2,020 bytes
コンパイル時間 881 ms
コンパイル使用メモリ 115,948 KB
実行使用メモリ 28,564 KB
最終ジャッジ日時 2024-07-01 08:47:14
合計ジャッジ時間 2,991 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
26,032 KB
testcase_01 AC 31 ms
27,936 KB
testcase_02 AC 30 ms
26,200 KB
testcase_03 AC 33 ms
26,208 KB
testcase_04 AC 31 ms
25,696 KB
testcase_05 AC 35 ms
28,564 KB
testcase_06 AC 32 ms
26,292 KB
testcase_07 AC 31 ms
26,064 KB
testcase_08 AC 33 ms
27,992 KB
testcase_09 AC 36 ms
28,304 KB
testcase_10 AC 36 ms
26,000 KB
testcase_11 AC 35 ms
28,420 KB
testcase_12 AC 34 ms
26,300 KB
testcase_13 AC 32 ms
27,856 KB
testcase_14 AC 37 ms
25,888 KB
testcase_15 AC 37 ms
25,876 KB
testcase_16 AC 36 ms
26,000 KB
testcase_17 AC 37 ms
26,256 KB
testcase_18 AC 32 ms
26,080 KB
testcase_19 AC 37 ms
26,004 KB
testcase_20 AC 31 ms
26,080 KB
testcase_21 AC 30 ms
28,048 KB
testcase_22 AC 35 ms
24,088 KB
testcase_23 AC 37 ms
26,152 KB
testcase_24 AC 37 ms
26,252 KB
testcase_25 AC 38 ms
28,304 KB
testcase_26 AC 28 ms
25,816 KB
testcase_27 AC 32 ms
28,120 KB
testcase_28 AC 36 ms
28,424 KB
testcase_29 AC 35 ms
26,136 KB
testcase_30 AC 31 ms
28,116 KB
testcase_31 AC 30 ms
25,896 KB
testcase_32 AC 34 ms
28,168 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;

namespace CompetitiveProgramming
{
    public class Program
    {
        public static void Main(string[] args)
        {
            var n = int.Parse(Console.ReadLine());
            var list = new int[n];
            for (int i = 0; i < list.Length; i++)
            {
                list[i] = Convert.ToString(i + 1, 2).Where(s => s == '1').Count();
            }

            var q = new Queue<int>();
            q.Enqueue(0);
            var history = new HashSet<int>();
            var count = 1;

            if (n == 1)
            {
                Console.WriteLine(1);
                return;
            }

            while (true)
            {
                var tmp_q = new Queue<int>();
                count++;

                while (q.Count > 0)
                {
                    var cur = q.Dequeue();
                    var move1 = cur + list[cur];
                    var move2 = cur - list[cur];

                    if(move1==list.Length-1)
                    {
                        Console.WriteLine(count);
                        return;
                    }

                    if (move1 < list.Length)
                    {
                        if (!history.Contains(move1))
                        {
                            tmp_q.Enqueue(move1);
                            history.Add(move1);
                        }
                    }
                    if (0 <= move2)
                    {
                        if (!history.Contains(move2))
                        {
                            tmp_q.Enqueue(move2);
                            history.Add(move2);
                        }
                    }
                }
                q.Clear();
                q = tmp_q;

                if (count >= list.Length)
                {
                    Console.WriteLine(-1);
                    break;
                }
            }
        }
    }
}
0