結果
問題 | No.1703 Much Matching |
ユーザー | tenten |
提出日時 | 2021-11-09 15:22:03 |
言語 | Java21 (openjdk 21) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,938 bytes |
コンパイル時間 | 2,110 ms |
コンパイル使用メモリ | 79,372 KB |
実行使用メモリ | 889,920 KB |
最終ジャッジ日時 | 2024-11-18 14:40:15 |
合計ジャッジ時間 | 121,585 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 52 ms
57,312 KB |
testcase_01 | MLE | - |
testcase_02 | AC | 52 ms
57,212 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | MLE | - |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | TLE | - |
testcase_25 | TLE | - |
testcase_26 | TLE | - |
testcase_27 | TLE | - |
testcase_28 | MLE | - |
testcase_29 | TLE | - |
testcase_30 | TLE | - |
testcase_31 | TLE | - |
testcase_32 | TLE | - |
testcase_33 | TLE | - |
testcase_34 | TLE | - |
testcase_35 | TLE | - |
testcase_36 | TLE | - |
testcase_37 | MLE | - |
ソースコード
import java.util.*; import java.io.*; public class Main { static ArrayList<HashMap<Integer, HashMap<Integer, Integer>>> dp = new ArrayList<>(); static int[] ms; static int[] fs; public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); int m = sc.nextInt(); int q = sc.nextInt(); ms = new int[q]; fs = new int[q]; for (int i = 0; i < q; i++) { ms[i] = sc.nextInt() - 1; fs[i] = sc.nextInt() - 1; dp.add(new HashMap<>()); } System.out.println(dfw(q - 1, n - 1, m - 1)); } static int dfw(int q, int n, int m) { if (q < 0 || n < 0 || m < 0) { return 0; } if (dp.get(q).containsKey(n)) { if (dp.get(q).get(n).containsKey(m)) { return dp.get(q).get(n).get(m); } } else { dp.get(q).put(n, new HashMap<>()); } int ans = dfw(q - 1, n, m); ans = Math.max(ans, dfw(q - 1, ms[q] - 1, fs[q] - 1) + 1); dp.get(q).get(n).put(m, ans); return ans; } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); public Scanner() throws Exception { } public int nextInt() throws Exception { return Integer.parseInt(next()); } public long nextLong() throws Exception { return Long.parseLong(next()); } public double nextDouble() throws Exception { return Double.parseDouble(next()); } public String nextLine() throws Exception { return br.readLine(); } public String next() throws Exception { if (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }