結果

問題 No.1703 Much Matching
ユーザー tentententen
提出日時 2024-01-11 16:55:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 489 ms / 2,000 ms
コード長 2,055 bytes
コンパイル時間 2,611 ms
コンパイル使用メモリ 88,916 KB
実行使用メモリ 61,284 KB
最終ジャッジ日時 2024-09-27 20:37:39
合計ジャッジ時間 13,320 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
50,500 KB
testcase_01 AC 48 ms
50,128 KB
testcase_02 AC 50 ms
50,092 KB
testcase_03 AC 68 ms
51,372 KB
testcase_04 AC 68 ms
51,420 KB
testcase_05 AC 74 ms
53,596 KB
testcase_06 AC 333 ms
58,848 KB
testcase_07 AC 136 ms
54,472 KB
testcase_08 AC 351 ms
59,104 KB
testcase_09 AC 358 ms
59,056 KB
testcase_10 AC 179 ms
55,340 KB
testcase_11 AC 206 ms
55,864 KB
testcase_12 AC 135 ms
54,712 KB
testcase_13 AC 247 ms
58,076 KB
testcase_14 AC 114 ms
52,248 KB
testcase_15 AC 200 ms
57,532 KB
testcase_16 AC 275 ms
59,032 KB
testcase_17 AC 305 ms
58,528 KB
testcase_18 AC 106 ms
52,216 KB
testcase_19 AC 408 ms
59,388 KB
testcase_20 AC 182 ms
56,844 KB
testcase_21 AC 419 ms
59,388 KB
testcase_22 AC 311 ms
59,108 KB
testcase_23 AC 264 ms
58,860 KB
testcase_24 AC 91 ms
52,028 KB
testcase_25 AC 141 ms
55,384 KB
testcase_26 AC 226 ms
58,784 KB
testcase_27 AC 294 ms
58,824 KB
testcase_28 AC 402 ms
58,980 KB
testcase_29 AC 207 ms
58,800 KB
testcase_30 AC 243 ms
58,980 KB
testcase_31 AC 133 ms
55,132 KB
testcase_32 AC 316 ms
59,208 KB
testcase_33 AC 271 ms
61,284 KB
testcase_34 AC 136 ms
54,752 KB
testcase_35 AC 173 ms
56,420 KB
testcase_36 AC 489 ms
61,264 KB
testcase_37 AC 98 ms
56,752 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[][] matches = new boolean[n + 1][m + 1];
        for (int i = 0; i < q; i++) {
            matches[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 (matches[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