結果

問題 No.3 ビットすごろく
ユーザー syoken_desukasyoken_desuka
提出日時 2015-02-27 12:35:12
言語 C#(csc)
(csc 3.9.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 3,726 bytes
コンパイル時間 2,130 ms
コンパイル使用メモリ 106,120 KB
実行使用メモリ 22,912 KB
最終ジャッジ日時 2023-09-06 03:44:29
合計ジャッジ時間 5,374 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
20,660 KB
testcase_01 AC 52 ms
20,684 KB
testcase_02 AC 52 ms
20,692 KB
testcase_03 AC 56 ms
22,712 KB
testcase_04 AC 54 ms
20,648 KB
testcase_05 AC 54 ms
20,660 KB
testcase_06 AC 55 ms
22,724 KB
testcase_07 AC 54 ms
22,800 KB
testcase_08 AC 55 ms
20,724 KB
testcase_09 AC 53 ms
18,604 KB
testcase_10 AC 55 ms
22,660 KB
testcase_11 AC 55 ms
20,704 KB
testcase_12 AC 56 ms
20,724 KB
testcase_13 AC 55 ms
20,820 KB
testcase_14 AC 54 ms
22,704 KB
testcase_15 AC 57 ms
20,736 KB
testcase_16 AC 56 ms
20,660 KB
testcase_17 AC 57 ms
20,676 KB
testcase_18 AC 55 ms
22,804 KB
testcase_19 AC 55 ms
20,724 KB
testcase_20 AC 55 ms
18,680 KB
testcase_21 AC 54 ms
22,836 KB
testcase_22 AC 55 ms
20,880 KB
testcase_23 AC 56 ms
20,732 KB
testcase_24 AC 56 ms
22,712 KB
testcase_25 AC 54 ms
22,744 KB
testcase_26 WA -
testcase_27 AC 54 ms
22,660 KB
testcase_28 AC 55 ms
20,668 KB
testcase_29 AC 55 ms
20,676 KB
testcase_30 AC 54 ms
20,600 KB
testcase_31 AC 54 ms
22,744 KB
testcase_32 AC 55 ms
20,688 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.Text;
using sc = Scanner;
using System.Collections;
using System.Linq;

class Program
{
    static void Main(string[] args)
    {
        Solve();

#if DEBUG
        Console.WriteLine("終了するにはなにかキーを押して下さい...");
        Console.ReadKey();
#endif

    }

    static void Solve()
    {
        int n = sc.NextInt();
        bool[]alreadyReached = new bool[n+1];
        Queue<int[]> sim = new Queue<int[]>();
        sim.Enqueue(new int[]{1,0});
        alreadyReached[1] = true;
        while (sim.Count != 0)
        {
            int[] tmp = sim.Dequeue();
#if DEBUG
            Console.Write(tmp[0]);
            Console.Write("  "+tmp[1]);
            Console.WriteLine();
#endif 
            int moveCount = 0;
            for (int i = 1; i < 10000; i =i*2)
            {
                if ((tmp[0] & i) != 0)
                {
                    moveCount++;
                }
            }
#if DEBUG
            Console.WriteLine(moveCount);
#endif 
            if (tmp[0]+ moveCount == n)
            {
                Console.WriteLine(tmp[1]+1+1);
                return;
            }
            if (tmp[0] - moveCount > 1 && !alreadyReached[tmp[0] - moveCount])
            {
                alreadyReached[tmp[0] - moveCount] = true;
                sim.Enqueue(new int[]{tmp[0] - moveCount,tmp[1]+1} );
            }
            if (tmp[0]+ moveCount < n+1 && !alreadyReached[tmp[0] + moveCount])
            {
                alreadyReached[tmp[0] + moveCount] = true;
                sim.Enqueue(new int[]{tmp[0]+ moveCount,tmp[1]+1});
            }
        }
        Console.WriteLine(-1);
#if DEBUG
        Console.WriteLine("local check"); // Visual Studioのローカル変数チェック用 MainにいくとSolve内のローカル変数消えちゃう
#endif 
    }

 }

public static class Scanner
{
    public static string[] NextStrArray()
    {
        return Console.ReadLine().Split(' ');
    }

    public static long[] NextLongArray()
    {
        string[] s = NextStrArray();
        long[] a = new long[s.Length];
        for (int i = 0; i < a.Length; i++)
        {
            a[i] = long.Parse(s[i]);
        }
        return a;
    }
    public static int[] NextIntArray()
    {

        string[] s = NextStrArray();
        int[] a = new int[s.Length];
        for (int i = 0; i < a.Length; i++)
        {
            a[i] = int.Parse(s[i]);
        }
        return a;
    }
    public static int NextInt()
    {
        string tmp = "";
        while (true)
        {
            string readData = char.ConvertFromUtf32(Console.Read());
            if (readData == " " || readData == "\n")
                break;
            tmp += readData;
        }
        return int.Parse(tmp);
    }
    public static double NextDouble()
    {
        string tmp = "";
        while (true)
        {
            string readData = char.ConvertFromUtf32(Console.Read());
            if (readData == " " || readData == "\n")
                break;
            tmp += readData;
        }
        return double.Parse(tmp);
    }
    public static long NextLong()
    {
        string tmp = "";
        while (true)
        {
            string readData = char.ConvertFromUtf32(Console.Read());
            if (readData == " " || readData == "\n")
                break;
            tmp += readData;
        }
        return long.Parse(tmp);
    }
    public static double[] NextDoubleArray()
    {

        string[] s = NextStrArray();
        double[] a = new double[s.Length];
        for (int i = 0; i < a.Length; i++)
        {
            a[i] = double.Parse(s[i]);
        }
        return a;
    }
}
0