結果

問題 No.1703 Much Matching
ユーザー tentententen
提出日時 2021-11-09 15:22:03
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,938 bytes
コンパイル時間 2,345 ms
コンパイル使用メモリ 78,728 KB
実行使用メモリ 58,540 KB
最終ジャッジ日時 2024-04-29 11:35:46
合計ジャッジ時間 7,259 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,712 KB
testcase_01 AC 53 ms
36,896 KB
testcase_02 AC 51 ms
36,892 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 TLE -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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();
    }
}
0