結果

問題 No.3 ビットすごろく
ユーザー syoken_desukasyoken_desuka
提出日時 2015-02-27 12:35:12
言語 C#(csc)
(csc 3.9.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 3,726 bytes
コンパイル時間 900 ms
コンパイル使用メモリ 105,344 KB
実行使用メモリ 18,176 KB
最終ジャッジ日時 2024-06-23 22:34:46
合計ジャッジ時間 2,785 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
17,408 KB
testcase_01 AC 23 ms
17,536 KB
testcase_02 AC 21 ms
17,536 KB
testcase_03 AC 22 ms
17,664 KB
testcase_04 AC 22 ms
17,664 KB
testcase_05 AC 23 ms
17,792 KB
testcase_06 AC 22 ms
17,664 KB
testcase_07 AC 21 ms
17,664 KB
testcase_08 AC 21 ms
17,792 KB
testcase_09 AC 22 ms
17,536 KB
testcase_10 AC 22 ms
17,920 KB
testcase_11 AC 22 ms
17,920 KB
testcase_12 AC 22 ms
18,048 KB
testcase_13 AC 23 ms
17,920 KB
testcase_14 AC 24 ms
17,920 KB
testcase_15 AC 23 ms
18,048 KB
testcase_16 AC 21 ms
17,664 KB
testcase_17 AC 23 ms
18,176 KB
testcase_18 AC 21 ms
17,792 KB
testcase_19 AC 21 ms
17,920 KB
testcase_20 AC 21 ms
17,664 KB
testcase_21 AC 21 ms
17,792 KB
testcase_22 AC 21 ms
17,792 KB
testcase_23 AC 23 ms
17,664 KB
testcase_24 AC 23 ms
18,048 KB
testcase_25 AC 23 ms
18,048 KB
testcase_26 WA -
testcase_27 AC 21 ms
17,664 KB
testcase_28 AC 22 ms
17,920 KB
testcase_29 AC 22 ms
17,792 KB
testcase_30 AC 22 ms
17,792 KB
testcase_31 AC 20 ms
17,920 KB
testcase_32 AC 21 ms
17,920 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