結果

問題 No.3 ビットすごろく
ユーザー abL8ZLsTbFabL8ZLsTbF
提出日時 2016-10-19 22:35:20
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 27 ms / 5,000 ms
コード長 1,009 bytes
コンパイル時間 2,093 ms
コンパイル使用メモリ 112,916 KB
実行使用メモリ 28,584 KB
最終ジャッジ日時 2024-07-01 08:07:01
合計ジャッジ時間 2,783 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 33
権限があれば一括ダウンロードができます
コンパイルメッセージ
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.Linq;

public class Program
{
	public static void Main()
	{
		int N = int.Parse(Console.ReadLine());
		var q = new Queue<Square>();
		q.Enqueue(new Square(1, 1));
		var already = new bool[N];
		if (N == 1)
		{
			Console.WriteLine(1);
			return;
		}
		while (q.Any())
		{
			var pop = q.Dequeue();
			int num = pop.Num;
			int mov = 0;
			for (int i = num; i > 0; i >>= 1)
			{
				mov += i & 1;
			}
			int go = num + mov;
			if (go < N && !already[go - 1])
			{
				already[go - 1] = true;
				q.Enqueue(new Square(go, pop.Count + 1));
			}
			if (go == N)
			{
				Console.WriteLine(pop.Count + 1);
				return;
			}
			int back = num - mov;
			if (back > 0 && !already[back - 1])
			{
				already[back - 1] = true;
				q.Enqueue(new Square(back, pop.Count + 1));
			}
		}
		Console.WriteLine(-1);
	}
}

public class Square
{
	public Square(int num, int count)
	{
		this.Num = num;
		this.Count = count;
	}
	
	public int Num;
	public int Count;
}
0