結果

問題 No.3 ビットすごろく
ユーザー nokonokonokonoko
提出日時 2016-11-06 19:16:03
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 60 ms / 5,000 ms
コード長 4,194 bytes
コンパイル時間 2,564 ms
コンパイル使用メモリ 114,688 KB
実行使用メモリ 22,940 KB
最終ジャッジ日時 2023-09-14 00:11:36
合計ジャッジ時間 5,824 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
22,704 KB
testcase_01 AC 58 ms
20,868 KB
testcase_02 AC 58 ms
18,812 KB
testcase_03 AC 59 ms
22,868 KB
testcase_04 AC 58 ms
20,700 KB
testcase_05 AC 58 ms
20,816 KB
testcase_06 AC 58 ms
20,684 KB
testcase_07 AC 58 ms
20,912 KB
testcase_08 AC 58 ms
20,820 KB
testcase_09 AC 59 ms
18,784 KB
testcase_10 AC 59 ms
20,864 KB
testcase_11 AC 58 ms
22,792 KB
testcase_12 AC 58 ms
18,748 KB
testcase_13 AC 59 ms
22,764 KB
testcase_14 AC 59 ms
20,856 KB
testcase_15 AC 59 ms
18,764 KB
testcase_16 AC 59 ms
20,820 KB
testcase_17 AC 59 ms
20,656 KB
testcase_18 AC 57 ms
20,808 KB
testcase_19 AC 59 ms
20,708 KB
testcase_20 AC 58 ms
20,732 KB
testcase_21 AC 57 ms
20,720 KB
testcase_22 AC 60 ms
22,740 KB
testcase_23 AC 60 ms
20,748 KB
testcase_24 AC 59 ms
20,712 KB
testcase_25 AC 59 ms
20,800 KB
testcase_26 AC 58 ms
22,752 KB
testcase_27 AC 59 ms
20,648 KB
testcase_28 AC 59 ms
20,700 KB
testcase_29 AC 58 ms
20,684 KB
testcase_30 AC 57 ms
20,808 KB
testcase_31 AC 57 ms
20,700 KB
testcase_32 AC 59 ms
22,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using LIB;
using System;
using System.Linq;
using System.Text;
using System.Collections.Generic;

class Program
{
    public static IO IO = new IO();
    static void Main(string[] args)
    {
        int n = IO.INT();
        BFSNUMBER<int> Q = new BFSNUMBER<int>(n + 1);
        int o = -1;
        Q.PUSH(1, 1);
        while (Q.SIZE() != 0)
        {
            PAIR<int, int> b = Q.POP();
            int bit = BIT(b.KEY);
            if (b.KEY == n) { o = b.VALUE; break; }
            Q.PUSH(b.KEY - bit, b.VALUE + 1);
            Q.PUSH(b.KEY + bit, b.VALUE + 1);
        }
        IO.WRITE(o);
        IO.FLUSH();
    }
    public static int BIT(int n)
    {
        int ret = 0;
        for (int i = 0; i < 32; i++)
        {
            if ((1 << i & n) != 0)
            {
                ret++;
            }
        }
        return ret;
    }
}

#region BFS
namespace LIB
{
    public class BFSNUMBER<T> : QUEUE<PAIR<int, T>>
    {
        private bool[] f;
        private int MIN;
        public BFSNUMBER(int max, int min = 0) : base(max) { MIN = min; f = new bool[max - min]; }
        public void PUSH(int key, T value) { PUSH(new PAIR<int, T>(key, value)); }
        public override void PUSH(PAIR<int, T> v) { int k = v.KEY - MIN; if (k >= 0 && k < m - MIN && !f[v.KEY]) { f[k] = true; base.PUSH(v); } }
    }
}
#endregion

#region QUEUE
namespace LIB
{
    public class QUEUE<T>
    {
        protected int m;
        private int s, e, c;
        private T[] q;
        public QUEUE(int max) { m = max; q = new T[m]; CLEAR(); }
        public void CLEAR() { e = 0; s = 0; c = 0; }
        public int SIZE() { return c; }
        public T TOP() { return q[0]; }
        public T POP() { T r = q[s++]; s %= m; c--; return r; }
        public virtual void PUSH(T v) { q[e++] = v; e %= m; c++; }
        public bool EMPTY() { return SIZE() == 0; }
    }
}
#endregion

#region PAIR
namespace LIB
{
    public class PAIR<T, U> : IEquatable<PAIR<T, U>> where T : IEquatable<T>
    {
        public T KEY;
        public U VALUE;
        public PAIR(T key, U value) { KEY = key; VALUE = value; }
        public bool SAME(PAIR<T, U> b) { return Equals(b); }
        public bool Equals(PAIR<T, U> b) { return KEY.Equals(b.KEY); }
    }
}
#endregion

namespace LIB
{
    public class IO
    {
        private const int WMAX = 1000;
        private StringBuilder S = new StringBuilder();
        private T R<T>(Func<string, T> f) { return f(Console.ReadLine()); }
        private T[] R<T>(Func<string, T> f, char c) { return STRING().Split(c).Select(f).ToArray(); }
        private T[] R<T>(Func<string, T> f, int l) { T[] r = new T[l]; for (int i = 0; i < l; i++) { r[i] = R(f); } return r; }
        private T[][] R<T>(Func<string, T> f, int l, char c) { T[][] r = new T[l][]; for (int i = 0; i < l; i++) { r[i] = R<T>(f, c); } return r; }
        private void W<T>(Func<T, string> f, T v, bool lf = true) { S.Append(f(v)); if (lf) { S.Append('\n'); } if (S.Length >= WMAX) { FLUSH(); } }
        public string STRING() { return R(s => s); }
        public string[] STRING(char c) { return R(s => s, c); }
        public string[] STRING(int l) { return R(s => s, l); }
        public string[][] STRING(int l, char c) { return R(s => s, l, c); }
        public int INT() { return R(int.Parse); }
        public int[] INT(char c) { return R(int.Parse, c); }
        public int[] INT(int l) { return R(int.Parse, l); }
        public int[][] INT(int l, char c) { return R(int.Parse, l, c); }
        public long LONG() { return R(long.Parse); }
        public long[] LONG(char c) { return R(long.Parse, c); }
        public long[] LONG(int l) { return R(long.Parse, l); }
        public long[][] LONG(int l, char c) { return R(long.Parse, l, c); }
        public double DOUBLE() { return R(double.Parse); }
        public double[] DOUBLE(char c) { return R(double.Parse, c); }
        public double[] DOUBLE(int l) { return R(double.Parse, l); }
        public double[][] DOUBLE(int l, char c) { return R(double.Parse, l, c); }
        public void WRITE(object s, bool lf = true) { W(v => v.ToString(), s, lf); }
        public void FLUSH() { Console.Write(S); S.Length = 0; }
    }
}
0