結果
問題 | No.2708 Jewel holder |
ユーザー | tenten |
提出日時 | 2024-04-01 15:46:37 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 62 ms / 2,000 ms |
コード長 | 3,098 bytes |
コンパイル時間 | 2,718 ms |
コンパイル使用メモリ | 80,048 KB |
実行使用メモリ | 50,444 KB |
最終ジャッジ日時 | 2024-09-30 21:51:17 |
合計ジャッジ時間 | 4,717 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 60 ms
50,360 KB |
testcase_01 | AC | 60 ms
50,224 KB |
testcase_02 | AC | 60 ms
50,356 KB |
testcase_03 | AC | 58 ms
50,216 KB |
testcase_04 | AC | 61 ms
50,316 KB |
testcase_05 | AC | 59 ms
50,188 KB |
testcase_06 | AC | 56 ms
50,208 KB |
testcase_07 | AC | 58 ms
50,412 KB |
testcase_08 | AC | 58 ms
50,024 KB |
testcase_09 | AC | 56 ms
50,424 KB |
testcase_10 | AC | 56 ms
50,352 KB |
testcase_11 | AC | 59 ms
50,444 KB |
testcase_12 | AC | 58 ms
49,960 KB |
testcase_13 | AC | 57 ms
50,212 KB |
testcase_14 | AC | 59 ms
50,408 KB |
testcase_15 | AC | 60 ms
49,992 KB |
testcase_16 | AC | 59 ms
50,264 KB |
testcase_17 | AC | 57 ms
50,352 KB |
testcase_18 | AC | 58 ms
50,244 KB |
testcase_19 | AC | 62 ms
50,072 KB |
ソースコード
import java.io.*; import java.util.*; import java.util.function.*; import java.util.stream.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int h = sc.nextInt(); int w = sc.nextInt(); char[][] field = new char[h][]; List<List<Map<Integer, Integer>>> dp = new ArrayList<>(); for (int i = 0; i < h; i++) { field[i] = sc.next().toCharArray(); dp.add(new ArrayList<>()); for (int j = 0; j < w; j++) { dp.get(i).add(new HashMap<>()); } } dp.get(0).get(0).put(1, 1); for (int i = 0; i < h; i++) { for (int j = 0; j < w; j++) { if ((i == 0 && j == 0) || field[i][j] == '#') { continue; } if (i > 0) { for (Map.Entry<Integer, Integer> entry : dp.get(i - 1).get(j).entrySet()) { int key = entry.getKey(); int value = entry.getValue(); if (field[i][j] == 'o') { dp.get(i).get(j).put(key + 1, dp.get(i).get(j).getOrDefault(key + 1, 0) + value); } else if (key > 0) { dp.get(i).get(j).put(key - 1, dp.get(i).get(j).getOrDefault(key - 1, 0) + value); } } } if (j > 0) { for (Map.Entry<Integer, Integer> entry : dp.get(i).get(j - 1).entrySet()) { int key = entry.getKey(); int value = entry.getValue(); if (field[i][j] == 'o') { dp.get(i).get(j).put(key + 1, dp.get(i).get(j).getOrDefault(key + 1, 0) + value); } else if (key > 0) { dp.get(i).get(j).put(key - 1, dp.get(i).get(j).getOrDefault(key - 1, 0) + value); } } } } } long ans = 0; for (int x : dp.get(h - 1).get(w - 1).values()) { ans += x; } System.out.println(ans); } } class Scanner { BufferedReader br; StringTokenizer st = new StringTokenizer(""); StringBuilder sb = new StringBuilder(); public Scanner() { try { br = new BufferedReader(new InputStreamReader(System.in)); } catch (Exception e) { } } public int nextInt() { return Integer.parseInt(next()); } public long nextLong() { return Long.parseLong(next()); } public double nextDouble() { return Double.parseDouble(next()); } public String next() { try { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } } catch (Exception e) { e.printStackTrace(); } finally { return st.nextToken(); } } }