結果
問題 | No.3 ビットすごろく |
ユーザー | maruyuki95 |
提出日時 | 2020-05-22 23:39:32 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 178 ms / 5,000 ms |
コード長 | 1,803 bytes |
コンパイル時間 | 2,156 ms |
コンパイル使用メモリ | 77,700 KB |
実行使用メモリ | 58,412 KB |
最終ジャッジ日時 | 2024-07-01 09:49:17 |
合計ジャッジ時間 | 8,452 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 137 ms
54,200 KB |
testcase_01 | AC | 136 ms
53,896 KB |
testcase_02 | AC | 136 ms
54,340 KB |
testcase_03 | AC | 148 ms
54,392 KB |
testcase_04 | AC | 128 ms
52,880 KB |
testcase_05 | AC | 155 ms
54,448 KB |
testcase_06 | AC | 167 ms
54,260 KB |
testcase_07 | AC | 144 ms
54,296 KB |
testcase_08 | AC | 166 ms
54,548 KB |
testcase_09 | AC | 168 ms
55,092 KB |
testcase_10 | AC | 161 ms
54,520 KB |
testcase_11 | AC | 172 ms
54,264 KB |
testcase_12 | AC | 168 ms
54,764 KB |
testcase_13 | AC | 146 ms
54,140 KB |
testcase_14 | AC | 171 ms
54,724 KB |
testcase_15 | AC | 177 ms
56,688 KB |
testcase_16 | AC | 178 ms
56,636 KB |
testcase_17 | AC | 174 ms
56,604 KB |
testcase_18 | AC | 143 ms
54,192 KB |
testcase_19 | AC | 174 ms
58,412 KB |
testcase_20 | AC | 141 ms
54,388 KB |
testcase_21 | AC | 138 ms
54,180 KB |
testcase_22 | AC | 170 ms
54,668 KB |
testcase_23 | AC | 173 ms
56,520 KB |
testcase_24 | AC | 164 ms
56,920 KB |
testcase_25 | AC | 170 ms
56,640 KB |
testcase_26 | AC | 134 ms
54,276 KB |
testcase_27 | AC | 147 ms
54,420 KB |
testcase_28 | AC | 174 ms
56,720 KB |
testcase_29 | AC | 170 ms
54,376 KB |
testcase_30 | AC | 137 ms
53,868 KB |
testcase_31 | AC | 139 ms
53,904 KB |
testcase_32 | AC | 168 ms
54,472 KB |
ソースコード
import java.util.HashSet; import java.util.Scanner; import java.util.Set; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int arg = sc.nextInt(); int ret = new Main().execute(arg); System.out.println(ret); } private int execute(int goal) { Set<Integer> locations = new HashSet<Integer>(); locations.add(1); return search(goal, locations, locations, 1); } private int search(int goal, Set<Integer> passedLocations, Set<Integer> diffLocations, int times) { if (diffLocations.contains(goal)) { return times; } Set<Integer> newLocations = new HashSet<Integer>(); for (Integer location : diffLocations) { int binaryTotal = calcurateBinaryTotal(location); int locationForward = location + binaryTotal; if (isMovedToNewLocation(goal, passedLocations, locationForward)) { newLocations.add(locationForward); } int locationBackward = location - binaryTotal; if (isMovedToNewLocation(goal, passedLocations, locationBackward)) { newLocations.add(locationBackward); } } if (newLocations.size() > 0) { passedLocations.addAll(newLocations); return search(goal, passedLocations, newLocations, ++times); } return -1; } private boolean isMovedToNewLocation(int goal, Set<Integer> passedLocations, int location) { return 1 <= location && location <= goal && !passedLocations.contains(location); } /** * 10進数の数値を2進数で表現した時の1のビット数を返す * @param decimalNumber 10進数 * @return 2進数で表現した時の1のビット数 */ private int calcurateBinaryTotal(int decimalNumber) { int ret = 0; int quotient = decimalNumber; do { ret += quotient % 2; quotient = quotient / 2; } while (quotient > 0); return ret; } }