結果
問題 | No.3 ビットすごろく |
ユーザー | stady0sh |
提出日時 | 2017-06-01 11:21:51 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 4,201 bytes |
コンパイル時間 | 1,175 ms |
コンパイル使用メモリ | 118,228 KB |
実行使用メモリ | 25,180 KB |
最終ジャッジ日時 | 2024-09-21 21:37:33 |
合計ジャッジ時間 | 3,439 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
19,072 KB |
testcase_01 | AC | 29 ms
19,072 KB |
testcase_02 | AC | 29 ms
18,944 KB |
testcase_03 | AC | 35 ms
19,456 KB |
testcase_04 | AC | 32 ms
19,328 KB |
testcase_05 | AC | 44 ms
20,608 KB |
testcase_06 | AC | 38 ms
19,840 KB |
testcase_07 | AC | 33 ms
19,200 KB |
testcase_08 | AC | 40 ms
20,352 KB |
testcase_09 | AC | 48 ms
20,992 KB |
testcase_10 | AC | 51 ms
21,080 KB |
testcase_11 | AC | 46 ms
20,736 KB |
testcase_12 | AC | 43 ms
20,480 KB |
testcase_13 | AC | 35 ms
19,712 KB |
testcase_14 | AC | 50 ms
21,376 KB |
testcase_15 | AC | 56 ms
21,632 KB |
testcase_16 | AC | 53 ms
21,216 KB |
testcase_17 | AC | 56 ms
21,624 KB |
testcase_18 | AC | 33 ms
19,328 KB |
testcase_19 | AC | 56 ms
21,716 KB |
testcase_20 | AC | 31 ms
19,072 KB |
testcase_21 | AC | 29 ms
18,944 KB |
testcase_22 | AC | 52 ms
21,248 KB |
testcase_23 | AC | 55 ms
21,596 KB |
testcase_24 | AC | 56 ms
21,760 KB |
testcase_25 | AC | 56 ms
21,760 KB |
testcase_26 | WA | - |
testcase_27 | AC | 36 ms
19,712 KB |
testcase_28 | AC | 54 ms
21,760 KB |
testcase_29 | AC | 47 ms
20,864 KB |
testcase_30 | AC | 29 ms
18,688 KB |
testcase_31 | AC | 30 ms
18,944 KB |
testcase_32 | AC | 46 ms
20,608 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace YukiCoder_Cs { class Program { public static void Main() { var N = int.Parse(Console.ReadLine().Trim()); var root = CreateRoot(N); var Sugoroku = new Sugoroku(root); Sugoroku.BFSSearch(); var result = Sugoroku.GetShortRangeCount; Console.WriteLine($"{result}"); } private static int[] CreateRoot(int length) { int[] root = new int[length]; for (int i = 0; i < length; ++i) { root[i] = i + 1; } return root; } } public class Sugoroku { private int shortRange; // 最短距離 private int[] visitedArray; // 訪問済み配列 private int startPos; // スタートポジション private int goalPos; // ゴールポジション public int GetShortRangeCount { get { return this.shortRange; } } enum move { Right, Left } // コンストラクタ public Sugoroku(int[] Sugoroku) { this.shortRange = -1; this.visitedArray = new int[Sugoroku.Length + 1]; this.startPos = 1; // スタートポジションは1固定 this.goalPos = Sugoroku.Length; } // すごろく public bool BFSSearch() { var isGoal = false; this.InitVisitedArray(); visitedArray[startPos] = startPos; // スタート位置をQueueに追加 var queue = new Queue<int>(); queue.Enqueue(startPos); // Queueが0になるまでループ while (queue.Count > 0) { var location = queue.Dequeue(); // 移動先を計算 int moveCnt = Convert.ToString(location, 2).ToCharArray().Where(c => c == '1').Count(); int nextPlace = 0; foreach (move item in Enum.GetValues(typeof(move))) { switch (item) { case move.Right: nextPlace = location + moveCnt; break; case move.Left: nextPlace = location - moveCnt; break; } // 移動先が有効か、ゴールか等を判定 if (nextPlace < 1 || nextPlace > goalPos) { continue; } if (visitedArray[nextPlace] > 0) { continue; } // 移動先が有効ならキューに追加 visitedArray[nextPlace] = location; queue.Enqueue(nextPlace); // ゴールならキューに追加、ループを抜ける if (nextPlace == goalPos) { isGoal = true; break; } } if (isGoal) { break; } } // ゴール可否の処理 if (isGoal) { this.shortRange = GetShortRange(); } return isGoal; } private int GetShortRange() { int cnt = 0; int index = goalPos; int beforeIndex = 0; while (true) { beforeIndex = visitedArray[index]; cnt++; if (index == 1) { break; } index = beforeIndex; } return cnt; } private void InitVisitedArray() { this.visitedArray = Enumerable.Repeat(-1, this.visitedArray.Length).ToArray(); } } }