結果

問題 No.1703 Much Matching
ユーザー tentententen
提出日時 2023-11-30 16:50:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 579 ms / 2,000 ms
コード長 2,037 bytes
コンパイル時間 3,580 ms
コンパイル使用メモリ 92,052 KB
実行使用メモリ 50,316 KB
最終ジャッジ日時 2024-09-26 14:09:55
合計ジャッジ時間 16,033 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
37,224 KB
testcase_01 AC 53 ms
37,184 KB
testcase_02 AC 53 ms
37,100 KB
testcase_03 AC 91 ms
39,288 KB
testcase_04 AC 75 ms
38,668 KB
testcase_05 AC 81 ms
40,964 KB
testcase_06 AC 388 ms
47,664 KB
testcase_07 AC 148 ms
42,080 KB
testcase_08 AC 420 ms
48,192 KB
testcase_09 AC 418 ms
47,816 KB
testcase_10 AC 204 ms
43,760 KB
testcase_11 AC 241 ms
46,628 KB
testcase_12 AC 153 ms
42,156 KB
testcase_13 AC 285 ms
47,540 KB
testcase_14 AC 122 ms
39,580 KB
testcase_15 AC 224 ms
46,712 KB
testcase_16 AC 327 ms
47,724 KB
testcase_17 AC 346 ms
47,480 KB
testcase_18 AC 115 ms
39,464 KB
testcase_19 AC 472 ms
48,872 KB
testcase_20 AC 202 ms
45,440 KB
testcase_21 AC 475 ms
49,264 KB
testcase_22 AC 345 ms
48,376 KB
testcase_23 AC 308 ms
47,248 KB
testcase_24 AC 104 ms
39,420 KB
testcase_25 AC 155 ms
43,600 KB
testcase_26 AC 276 ms
46,424 KB
testcase_27 AC 357 ms
47,552 KB
testcase_28 AC 469 ms
48,484 KB
testcase_29 AC 249 ms
46,268 KB
testcase_30 AC 288 ms
47,920 KB
testcase_31 AC 152 ms
42,128 KB
testcase_32 AC 376 ms
47,708 KB
testcase_33 AC 329 ms
50,316 KB
testcase_34 AC 150 ms
42,076 KB
testcase_35 AC 182 ms
43,948 KB
testcase_36 AC 579 ms
50,116 KB
testcase_37 AC 105 ms
45,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int m = sc.nextInt();
        int q = sc.nextInt();
        boolean[][] match = new boolean[n + 1][m + 1];
        while (q-- > 0) {
            match[sc.nextInt()][sc.nextInt()] = true;
        }
        int[][] dp = new int[n + 1][m + 1];
        for (int i = 1; i <= n; i++) {
            for (int j = 1; j <= m; j++) {
                if (match[i][j]) {
                    dp[i][j] = dp[i - 1][j - 1] + 1;
                } else {
                    dp[i][j] = Math.max(dp[i - 1][j], dp[i][j - 1]);
                }
            }
        }
        System.out.println(dp[n][m]);
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    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 int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0