結果
問題 | No.323 yuki国 |
ユーザー | Grenache |
提出日時 | 2015-12-17 00:13:51 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 6,198 bytes |
コンパイル時間 | 4,254 ms |
コンパイル使用メモリ | 80,688 KB |
実行使用メモリ | 52,152 KB |
最終ジャッジ日時 | 2024-09-16 06:33:55 |
合計ジャッジ時間 | 7,273 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge6 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 53 ms
50,504 KB |
testcase_01 | WA | - |
testcase_02 | AC | 54 ms
50,152 KB |
testcase_03 | AC | 56 ms
50,168 KB |
testcase_04 | WA | - |
testcase_05 | AC | 54 ms
50,364 KB |
testcase_06 | AC | 54 ms
50,604 KB |
testcase_07 | AC | 54 ms
50,436 KB |
testcase_08 | AC | 54 ms
50,724 KB |
testcase_09 | AC | 54 ms
50,584 KB |
testcase_10 | AC | 53 ms
50,168 KB |
testcase_11 | WA | - |
testcase_12 | AC | 54 ms
50,508 KB |
testcase_13 | AC | 58 ms
50,564 KB |
testcase_14 | AC | 55 ms
50,456 KB |
testcase_15 | AC | 82 ms
50,776 KB |
testcase_16 | AC | 54 ms
50,500 KB |
testcase_17 | AC | 53 ms
50,484 KB |
testcase_18 | AC | 54 ms
50,560 KB |
testcase_19 | AC | 55 ms
50,608 KB |
testcase_20 | AC | 55 ms
50,556 KB |
testcase_21 | AC | 54 ms
50,584 KB |
testcase_22 | AC | 58 ms
50,540 KB |
testcase_23 | AC | 54 ms
50,392 KB |
testcase_24 | AC | 63 ms
50,536 KB |
testcase_25 | AC | 54 ms
50,532 KB |
testcase_26 | AC | 64 ms
50,336 KB |
testcase_27 | AC | 53 ms
50,588 KB |
testcase_28 | AC | 61 ms
50,548 KB |
testcase_29 | AC | 61 ms
50,600 KB |
testcase_30 | AC | 54 ms
50,384 KB |
testcase_31 | AC | 53 ms
50,532 KB |
testcase_32 | AC | 52 ms
50,500 KB |
testcase_33 | AC | 52 ms
50,540 KB |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | AC | 53 ms
50,512 KB |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.io.PrintStream; import java.io.PrintWriter; import java.util.ArrayDeque; import java.util.Arrays; import java.util.Deque; import java.util.Iterator; public class Main_yukicoder323 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); Printer pr = new Printer(System.out); int h = sc.nextInt(); int w = sc.nextInt(); int a = sc.nextInt(); int si = sc.nextInt(); int sj = sc.nextInt(); int b = sc.nextInt(); int gi = sc.nextInt(); int gj = sc.nextInt(); char[][] akichi = new char[h][]; for (int i = 0; i < h; i++) { akichi[i] = sc.next().toCharArray(); } if (Math.abs(a - b) % 2 != Math.abs(si - gi + sj - gj) % 2) { pr.println("No"); sc.close(); pr.close(); return; } int[] di = {-1, 0, 1, 0}; int[] dj = {0, 1, 0, -1}; boolean flag1 = false; boolean flag2 = false; for (int i = 0; i < h; i++) { for (int j = 0; j < w; j++) { for (int k = 0; k < 2; k++) { int ni = i + di[k]; int nj = j + dj[k]; if (ni < 0 || nj >= w) { continue; } if (akichi[i][j] == akichi[ni][nj]) { if (akichi[i][j] == '*') { flag1 = true; } else { flag2 = true; } } } } } int g = 0; for (int k = 0; k < di.length; k++) { int ni = gi + di[k]; int nj = gj + dj[k]; if (ni < 0 || ni >= h || nj < 0 || nj >= w) { continue; } g++; } if (g == 1 && akichi[gi][gj] == '*') { pr.println("No"); sc.close(); pr.close(); return; } boolean ret = false; if (flag1 && flag2) { ret = isOk(akichi, di, dj, a, si, sj, b, gi, gj); } else if (flag1) { int[][] yuki = getYuki(akichi, di, dj, a, si, sj, b, gi, gj, true); if (yuki[gi][gj] <= b && yuki[gi][gj] > 0) { ret = true; } } else if (flag2) { int[][] yuki = getYuki(akichi, di, dj, a, si, sj, b, gi, gj, false); if (yuki[gi][gj] >= b) { ret = true; } } else { int[][] yuki = getYuki(akichi, di, dj, a, si, sj, b, gi, gj, true); if (yuki[gi][gj] == b) { ret = true; } } if (ret) { pr.println("Yes"); } else { pr.println("No"); } pr.close(); sc.close(); } private static int[][] getYuki(char[][] akichi, int[] di, int[] dj, int a, int si, int sj, int b, int gi, int gj, boolean min) { int h = akichi.length; int w = akichi[0].length; int[][] yuki = new int[h][w]; if (min) { for (int i = 0; i < h; i++) { Arrays.fill(yuki[i], Integer.MAX_VALUE); } } Deque<Integer> qi = new ArrayDeque<Integer>(); Deque<Integer> qj = new ArrayDeque<Integer>(); qi.add(si); qj.add(sj); yuki[si][sj] = a; while (!qi.isEmpty()) { int i = qi.remove(); int j = qj.remove(); for (int k = 0; k < di.length; k++) { int ni = i + di[k]; int nj = j + dj[k]; if (ni < 0 || ni >= h || nj < 0 || nj >= w) { continue; } int nyuki; if (akichi[ni][nj] == '*') { nyuki = yuki[i][j] + 1; } else { nyuki = yuki[i][j] - 1; } if (nyuki == 0) { continue; } if (min && yuki[ni][nj] > nyuki) { yuki[ni][nj] = nyuki; qi.add(ni); qj.add(nj); } else if (!min && yuki[ni][nj] < nyuki) { yuki[ni][nj] = nyuki; qi.add(ni); qj.add(nj); } } } return yuki; } private static boolean isOk(char[][] akichi, int[] di, int[] dj, int a, int si, int sj, int b, int gi, int gj) { int h = akichi.length; int w = akichi[0].length; int[][] yuki = new int[h][w]; Deque<Integer> qi = new ArrayDeque<Integer>(); Deque<Integer> qj = new ArrayDeque<Integer>(); qi.add(si); qj.add(sj); yuki[si][sj] = a; while (!qi.isEmpty()) { int i = qi.remove(); int j = qj.remove(); for (int k = 0; k < di.length; k++) { int ni = i + di[k]; int nj = j + dj[k]; if (ni < 0 || ni >= h || nj < 0 || nj >= w) { continue; } if (akichi[i][j] == '*' && akichi[ni][nj] == '*') { return true; } int nyuki; if (akichi[ni][nj] == '*') { nyuki = yuki[i][j] + 1; } else { nyuki = yuki[i][j] - 1; } if (nyuki == 0) { continue; } if (yuki[ni][nj] >= nyuki) { continue; } yuki[ni][nj] = nyuki; qi.add(ni); qj.add(nj); } } if (yuki[gi][gj] >= b) { return true; } return false; } @SuppressWarnings("unused") private static class Scanner { BufferedReader br; Iterator<String> it; Scanner (InputStream in) { br = new BufferedReader(new InputStreamReader(in)); } String next() throws RuntimeException { try { if (it == null || !it.hasNext()) { it = Arrays.asList(br.readLine().split(" ")).iterator(); } return it.next(); } catch (IOException e) { throw new IllegalStateException(); } } int nextInt() throws RuntimeException { return Integer.parseInt(next()); } long nextLong() throws RuntimeException { return Long.parseLong(next()); } float nextFloat() throws RuntimeException { return Float.parseFloat(next()); } double nextDouble() throws RuntimeException { return Double.parseDouble(next()); } void close() { try { br.close(); } catch (IOException e) { // throw new IllegalStateException(); } } } private static class Printer extends PrintWriter { Printer(PrintStream out) { super(out); } } }