結果
問題 | No.3 ビットすごろく |
ユーザー | denderaKawazu |
提出日時 | 2018-02-09 01:25:31 |
言語 | Java21 (openjdk 21) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 3,435 bytes |
コンパイル時間 | 2,276 ms |
コンパイル使用メモリ | 78,572 KB |
実行使用メモリ | 56,792 KB |
最終ジャッジ日時 | 2024-07-01 08:54:36 |
合計ジャッジ時間 | 8,903 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 135 ms
54,548 KB |
testcase_01 | AC | 133 ms
54,392 KB |
testcase_02 | AC | 133 ms
53,868 KB |
testcase_03 | AC | 150 ms
54,464 KB |
testcase_04 | AC | 142 ms
54,268 KB |
testcase_05 | AC | 163 ms
56,448 KB |
testcase_06 | AC | 151 ms
54,332 KB |
testcase_07 | AC | 139 ms
53,984 KB |
testcase_08 | AC | 160 ms
54,312 KB |
testcase_09 | AC | 165 ms
56,464 KB |
testcase_10 | AC | 164 ms
56,100 KB |
testcase_11 | AC | 160 ms
56,340 KB |
testcase_12 | AC | 160 ms
56,488 KB |
testcase_13 | AC | 147 ms
54,440 KB |
testcase_14 | AC | 171 ms
56,292 KB |
testcase_15 | AC | 175 ms
56,792 KB |
testcase_16 | AC | 173 ms
56,556 KB |
testcase_17 | AC | 173 ms
56,504 KB |
testcase_18 | AC | 144 ms
54,220 KB |
testcase_19 | AC | 170 ms
56,384 KB |
testcase_20 | AC | 142 ms
54,260 KB |
testcase_21 | WA | - |
testcase_22 | AC | 177 ms
56,372 KB |
testcase_23 | AC | 179 ms
56,420 KB |
testcase_24 | AC | 176 ms
56,304 KB |
testcase_25 | AC | 175 ms
56,200 KB |
testcase_26 | AC | 134 ms
54,256 KB |
testcase_27 | AC | 148 ms
54,280 KB |
testcase_28 | AC | 171 ms
56,548 KB |
testcase_29 | AC | 160 ms
56,508 KB |
testcase_30 | AC | 134 ms
54,264 KB |
testcase_31 | AC | 135 ms
54,380 KB |
testcase_32 | AC | 164 ms
56,112 KB |
ソースコード
import java.io.OutputStream; import java.io.IOException; import java.io.InputStream; import java.io.PrintWriter; import java.util.Scanner; import java.util.ArrayDeque; import java.util.ArrayList; /** * Built using CHelper plug-in * Actual solution is at the top */ public class Main { public static void main(String[] args) { InputStream inputStream = System.in; OutputStream outputStream = System.out; Scanner in = new Scanner(inputStream); PrintWriter out = new PrintWriter(outputStream); Task solver = new Task(); solver.solve(1, in, out); out.close(); } static class Task { public void solve(int testNumber, Scanner in, PrintWriter out) { final int n = in.nextInt(); if (n == 1) { out.println(1); return; } Task.Vertex[] v = new Task.Vertex[n]; for (int i = 0; i < n; i++) v[i] = new Task.Vertex(); for (int i = 0; i < n; i++) { String s = Integer.toBinaryString(i + 1); int len = 0; for (char c : s.toCharArray()) if (c == '1') len++; if (i + len < n) { v[i].setEdge(v[i + len]); } if (i - len >= 0) { v[i].setEdge(v[i - len]); } } ArrayDeque<Task.Vertex> vq = new ArrayDeque<>(); v[0].setValue(1); vq.add(v[0]); int count = 1; while (count < n) { int m = vq.size(); for (int j = 0; j < m; j++) { Task.Vertex cv = vq.poll(); if (cv == v[n - 1]) { out.println(count); return; } for (int i = 0; i < cv.getDegree(); i++) { Task.Vertex nv = cv.getEdge(i).getVertex(); if (!nv.hasValue()) { vq.add(nv); nv.setValue(1); } } } count++; } out.println(-1); } static class Vertex { private int value; private boolean hasValue = false; private ArrayList<Task.Edge> edges = new ArrayList<Task.Edge>(); Vertex() { } void setValue(int v) { this.value = v; this.hasValue = true; } void setEdge(Task.Vertex v) { this.edges.add(new Task.Edge(v)); } int getDegree() { return this.edges.size(); } Task.Edge getEdge(int index) { return this.edges.get(index); } boolean hasValue() { return this.hasValue; } } static class Edge { private Task.Vertex v; private int cost; Edge() { this.v = v; } Edge(Task.Vertex v) { this.v = v; } Edge(Task.Vertex v, int c) { this.v = v; this.cost = c; } Task.Vertex getVertex() { return this.v; } } } }