結果

問題 No.1703 Much Matching
ユーザー tentententen
提出日時 2023-04-26 08:45:05
言語 Java21
(openjdk 21)
結果
MLE  
実行時間 -
コード長 2,743 bytes
コンパイル時間 2,849 ms
コンパイル使用メモリ 88,996 KB
実行使用メモリ 1,274,204 KB
最終ジャッジ日時 2024-11-15 17:14:49
合計ジャッジ時間 67,287 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
43,668 KB
testcase_01 MLE -
testcase_02 AC 56 ms
43,880 KB
testcase_03 AC 61 ms
385,064 KB
testcase_04 AC 88 ms
46,016 KB
testcase_05 MLE -
testcase_06 MLE -
testcase_07 MLE -
testcase_08 MLE -
testcase_09 MLE -
testcase_10 AC 1,486 ms
236,256 KB
testcase_11 MLE -
testcase_12 AC 511 ms
102,276 KB
testcase_13 MLE -
testcase_14 AC 186 ms
65,064 KB
testcase_15 MLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 145 ms
55,140 KB
testcase_19 TLE -
testcase_20 AC 1,627 ms
263,212 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 AC 181 ms
62,244 KB
testcase_25 AC 532 ms
93,960 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 AC 1,679 ms
258,248 KB
testcase_30 TLE -
testcase_31 AC 329 ms
64,296 KB
testcase_32 MLE -
testcase_33 TLE -
testcase_34 AC 394 ms
71,488 KB
testcase_35 AC 561 ms
98,960 KB
testcase_36 TLE -
testcase_37 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static Pair[] pairs;
    static int[][] dp;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int m = sc.nextInt();
        int q = sc.nextInt();
        pairs = new Pair[q];
        for (int i = 0; i < q; i++) {
            pairs[i] = new Pair(sc.nextInt() - 1, sc.nextInt() - 1);
        }
        Arrays.sort(pairs);
        dp = new int[q][m + 1];
        for (int[] arr : dp) {
            Arrays.fill(arr, -1);
        }
        System.out.println(dfw(q - 1, m));
    }
    
    static int dfw(int idx, int v) {
        if (v < 0) {
            return 0;
        }
        if (idx < 0) {
            return 0;
        }
        if (dp[idx][v] < 0) {
            dp[idx][v] = dfw(idx - 1, v);
            if (v > pairs[idx].female) {
                dp[idx][v] = Math.max(dp[idx][v], dfw(idx - 1, pairs[idx].female) + 1);
            }
        }
        return dp[idx][v];
    }
    
    static class Pair implements Comparable<Pair> {
        int male;
        int female;
        
        public Pair(int male, int female) {
            this.male = male;
            this.female = female;
        }
        
        public int compareTo(Pair another) {
            if (male == another.male) {
                return another.female - female;
            } else {
                return male - another.male;
            }
        }
    }
}
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