結果
問題 | No.340 雪の足跡 |
ユーザー | Kilisame |
提出日時 | 2016-05-24 12:33:47 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 4,227 bytes |
コンパイル時間 | 2,485 ms |
コンパイル使用メモリ | 78,636 KB |
実行使用メモリ | 41,624 KB |
最終ジャッジ日時 | 2024-10-07 03:59:12 |
合計ジャッジ時間 | 8,829 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
ソースコード
import java.util.HashSet; import java.util.Scanner; import java.util.Set; public class Main{ private int w; private int h; /* 4bitを上下左右へ移動可能かどうかのフラグとして扱う。 */ private boolean[][] blocks; private static final String ODEKAKEDEKINAI = "Odekakedekinai.."; public Main(int w, int h, int[][] b) { this.w = w; this.h = h; blocks = new boolean[w * h][5]; for (int i = 0; i < b.length; i++) { for (int j = 0; j < b[i].length - 1; j++) { footprint(b[i][j], b[i][j + 1]); } } } private void execute() { if (w * h - 1 == 0) { System.out.println(0); System.exit(0); } /* block[0]を起点として、移動開始 */ Set<Integer> next = new HashSet<Integer>(); next.add(0); int stepCount = 0; while (true) { next = step(next); stepCount++; if (next.isEmpty()) { System.out.println(ODEKAKEDEKINAI); break; } if (next.contains(w * h - 1)) { System.out.println(stepCount); break; } } } /** * StepCount歩数目にはじめて踏破するblcoksのNumberを記録して返す * * @param stepCount */ private Set<Integer> step(Set<Integer> beforeBlocks) { Set<Integer> nextBlocks = new HashSet<Integer>(); for (int number : beforeBlocks) { /* 現在numberに踏破済みのフラグ(blocks[number][4]=true)を立てる */ blocks[number][4] = true; /* 上移動チェック */ if (blocks[number][0] && !blocks[number + w][4]) { nextBlocks.add(number + w); } /* 下移動チェック */ if (blocks[number][1] && !blocks[number - w][4]) { nextBlocks.add(number - w); } /* 左移動チェック */ if (blocks[number][2] && !blocks[number - 1][4]) { nextBlocks.add(number - 1); } /* 右移動チェック */ if (blocks[number][3] && !blocks[number + 1][4]) { nextBlocks.add(number + 1); } } return nextBlocks; } private void footprint(int b1, int b2) { int min = Math.min(b1, b2); int max = Math.max(b1, b2); if (min / w == max / w) { /* 横の移動 = minとmaxをwで割ったときの値が等しい */ for (int i = min; i < max; i++) { /* 左側(数が小さいほうのblock)から右へと移動できるので、blocks[i][3]をtrue */ blocks[i][3] = true; /* 右側(数が大きいほうのblock)から左へと移動できるので、blocks[i+1][2]をtrue */ blocks[i + 1][2] = true; } } else { /* 縦の移動 */ for (int i = min; i < max; i += w) { /* 下側(数が小さいほうのblock)から上へと移動できるので、blocks[i][0]をtrue */ blocks[i][0] = true; /* 上側(数が大きいほうのblock)から下へと移動できるので、blocks[i+w][1]をtrue */ blocks[i + w][1] = true; } } } public static void main(String[] args) { Scanner cin = new Scanner(System.in); cin.close(); String[] blockStr = cin.nextLine().split(" "); int w = Integer.parseInt(blockStr[0]); int h = Integer.parseInt(blockStr[1]); int[][] blockInfo = new int[Integer.parseInt(blockStr[2])][]; for (int i = 0; i < blockInfo.length; i++) { int stepCount = Integer.parseInt(cin.nextLine()); blockInfo[i] = new int[stepCount + 1]; String[] blockInfoStr = cin.nextLine().split(" "); for (int j = 0; j < blockInfo[i].length; j++) { blockInfo[i][j] = Integer.parseInt(blockInfoStr[j]); } } Main snow = new Main(w, h, blockInfo); snow.execute(); } }