結果
問題 | No.3 ビットすごろく |
ユーザー | TaK7907 |
提出日時 | 2017-11-17 00:42:37 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 29 ms / 5,000 ms |
コード長 | 1,617 bytes |
コンパイル時間 | 1,378 ms |
コンパイル使用メモリ | 108,332 KB |
実行使用メモリ | 25,880 KB |
最終ジャッジ日時 | 2024-07-01 08:50:02 |
合計ジャッジ時間 | 2,589 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 24 ms
24,032 KB |
testcase_01 | AC | 24 ms
23,596 KB |
testcase_02 | AC | 24 ms
23,400 KB |
testcase_03 | AC | 25 ms
23,684 KB |
testcase_04 | AC | 25 ms
23,904 KB |
testcase_05 | AC | 26 ms
25,680 KB |
testcase_06 | AC | 25 ms
25,680 KB |
testcase_07 | AC | 25 ms
23,528 KB |
testcase_08 | AC | 25 ms
23,724 KB |
testcase_09 | AC | 27 ms
25,812 KB |
testcase_10 | AC | 27 ms
21,556 KB |
testcase_11 | AC | 27 ms
23,828 KB |
testcase_12 | AC | 27 ms
23,856 KB |
testcase_13 | AC | 24 ms
21,688 KB |
testcase_14 | AC | 28 ms
23,600 KB |
testcase_15 | AC | 28 ms
23,472 KB |
testcase_16 | AC | 28 ms
23,700 KB |
testcase_17 | AC | 29 ms
25,772 KB |
testcase_18 | AC | 25 ms
23,536 KB |
testcase_19 | AC | 29 ms
23,600 KB |
testcase_20 | AC | 24 ms
23,896 KB |
testcase_21 | AC | 24 ms
23,544 KB |
testcase_22 | AC | 27 ms
23,580 KB |
testcase_23 | AC | 28 ms
23,716 KB |
testcase_24 | AC | 28 ms
23,892 KB |
testcase_25 | AC | 29 ms
25,880 KB |
testcase_26 | AC | 24 ms
25,440 KB |
testcase_27 | AC | 25 ms
23,856 KB |
testcase_28 | AC | 27 ms
23,728 KB |
testcase_29 | AC | 27 ms
25,876 KB |
testcase_30 | AC | 24 ms
23,728 KB |
testcase_31 | AC | 24 ms
23,788 KB |
testcase_32 | AC | 27 ms
23,508 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; namespace yuki0003 { internal static class Program { internal static int CountHighBits(int value) { return value == 0 ? 0 : ( value % 2 + CountHighBits( value >> 1 ) ); } public static int Solve(System.IO.TextReader reader) { var n = int.Parse( reader.ReadLine() ); var cost = new int[ n ]; var stack = new Stack<int>(); var answer = -1; const int FIRST = 1; stack.Push( FIRST ); cost[ FIRST - 1 ] = 1; int cur, backward, forward; while (stack.Count > 0) { cur = stack.Pop(); if (cur == n) { if (answer == -1 || answer > cost[ cur - 1 ]) answer = cost[ cur - 1 ]; } backward = cur - CountHighBits( cur ); if (backward >= 1 && ( cost[ backward - 1 ] == 0 || cost[ backward - 1 ] > cost[ cur - 1 ] + 1 )) { stack.Push( backward ); cost[ backward - 1 ] = cost[ cur - 1 ] + 1; } forward = cur + CountHighBits( cur ); if (forward <= n && ( cost[ forward - 1 ] == 0 || cost[ forward - 1 ] > cost[ cur - 1 ] + 1 )) { stack.Push( forward ); cost[ forward - 1 ] = cost[ cur - 1 ] + 1; } } return answer; } static void Main(string[] args) { Console.WriteLine( Solve( System.Console.In ) ); } } }