結果
問題 | No.1703 Much Matching |
ユーザー | tenten |
提出日時 | 2021-11-09 15:17:32 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,876 bytes |
コンパイル時間 | 2,249 ms |
コンパイル使用メモリ | 78,636 KB |
実行使用メモリ | 1,489,404 KB |
最終ジャッジ日時 | 2024-11-18 14:32:07 |
合計ジャッジ時間 | 54,020 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 52 ms
57,472 KB |
testcase_01 | AC | 52 ms
50,612 KB |
testcase_02 | AC | 51 ms
50,516 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | MLE | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | MLE | - |
testcase_10 | MLE | - |
testcase_11 | MLE | - |
testcase_12 | MLE | - |
testcase_13 | MLE | - |
testcase_14 | WA | - |
testcase_15 | MLE | - |
testcase_16 | MLE | - |
testcase_17 | MLE | - |
testcase_18 | WA | - |
testcase_19 | MLE | - |
testcase_20 | MLE | - |
testcase_21 | MLE | - |
testcase_22 | MLE | - |
testcase_23 | MLE | - |
testcase_24 | WA | - |
testcase_25 | MLE | - |
testcase_26 | MLE | - |
testcase_27 | MLE | - |
testcase_28 | MLE | - |
testcase_29 | MLE | - |
testcase_30 | MLE | - |
testcase_31 | MLE | - |
testcase_32 | MLE | - |
testcase_33 | MLE | - |
testcase_34 | MLE | - |
testcase_35 | MLE | - |
testcase_36 | MLE | - |
testcase_37 | MLE | - |
ソースコード
import java.util.*; import java.io.*; public class Main { static int[][][] dp; 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 = new int[q][n][m]; for (int[][] arr1 : dp) { for (int[] arr2 : arr1) { Arrays.fill(arr2, -1); } } 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[q][n][m] < 0) { dp[q][n][m] = dfw(q - 1, n, m); if (ms[q] <= n && fs[q] <= m) { dp[q][n][m] = Math.max(dp[q][n][m], dfw(q - 1, ms[q] - 1, fs[q] - 1) + 1); } } return dp[q][n][m]; } } 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(); } }