結果
| 問題 | No.3 ビットすごろく |
| コンテスト | |
| ユーザー |
yun_app
|
| 提出日時 | 2016-05-10 19:59:07 |
| 言語 | Java (openjdk 23) |
| 結果 |
AC
|
| 実行時間 | 1,315 ms / 5,000 ms |
| コード長 | 1,253 bytes |
| コンパイル時間 | 2,241 ms |
| コンパイル使用メモリ | 78,688 KB |
| 実行使用メモリ | 64,840 KB |
| 最終ジャッジ日時 | 2024-07-01 07:51:45 |
| 合計ジャッジ時間 | 18,123 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 33 |
ソースコード
/* package whatever; // don't place package name! */
import java.util.*;
import java.lang.*;
import java.io.*;
/* Name of the class has to be "Main" only if the class is public. */
class Ideone
{
public static void main (String[] args) throws java.lang.Exception
{
// your code goes here
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int n = Integer.parseInt(br.readLine());
ArrayList<Integer> list = new ArrayList<Integer>();
for(int i=0;i<n;i++){
list.add(Integer.bitCount(i+1));
}
calc(list,0,n,1);
System.out.println(map.containsKey(n-1)?map.get(n-1):"-1");
}
static HashMap<Integer,Integer> map = new HashMap<Integer,Integer>();
public static void calc(ArrayList<Integer> list,int start,int goal,int step){
if(start<0 || start>=goal){
return;
}
if(map.containsKey(start)&&map.get(start) < step){
return;
}
map.put(start,step);
if(start==goal){
return;
}
int n = list.get(start);
if(n>0){
calc(list,start+n,goal,step+1);
calc(list,start-n,goal,step+1);
}
return;
}
}
yun_app