結果

問題 No.1703 Much Matching
ユーザー tentententen
提出日時 2023-04-26 08:51:38
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,760 bytes
コンパイル時間 3,108 ms
コンパイル使用メモリ 92,248 KB
実行使用メモリ 94,040 KB
最終ジャッジ日時 2024-04-27 14:37:24
合計ジャッジ時間 24,141 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
50,408 KB
testcase_01 AC 56 ms
50,132 KB
testcase_02 AC 58 ms
50,212 KB
testcase_03 AC 58 ms
50,464 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 1,032 ms
65,540 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 277 ms
58,192 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 129 ms
52,300 KB
testcase_15 WA -
testcase_16 AC 608 ms
63,796 KB
testcase_17 WA -
testcase_18 AC 114 ms
52,404 KB
testcase_19 WA -
testcase_20 AC 291 ms
59,308 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 106 ms
52,268 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 TLE -
testcase_37 AC 86 ms
51,532 KB
権限があれば一括ダウンロードができます

ソースコード

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();
        Pair[] pairs = new Pair[q];
        for (int i = 0; i < q; i++) {
            pairs[i] = new Pair(sc.nextInt() - 1, sc.nextInt() - 1);
        }
        Arrays.sort(pairs);
        int[] dp = new int[q + 1];
        Arrays.fill(dp, Integer.MAX_VALUE);
        dp[0] = -1;
        int max = 0;
        for (Pair x : pairs) {
            int left = 0;
            int right = max + 1;
            while(right - left > 1) {
                int mm = (left + right) / 2;
                if (dp[mm] <= x.female) {
                    left = mm;
                } else {
                    right = mm;
                }
            }
            dp[right] = x.female;
            max = Math.max(max, right);
        }
        System.out.println(max);
    }

    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