結果

問題 No.1703 Much Matching
ユーザー tentententen
提出日時 2021-11-09 15:35:33
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,284 bytes
コンパイル時間 2,371 ms
コンパイル使用メモリ 79,300 KB
実行使用メモリ 148,720 KB
最終ジャッジ日時 2024-11-18 14:59:50
合計ジャッジ時間 79,619 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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

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();
        Person[] persons = new Person[q + 1];
        persons[0] = new Person(0, 0);
        ArrayList<ArrayList<Integer>> dp = new ArrayList<>();
        dp.add(new ArrayList<>());
        dp.get(0).add(0);
        for (int i = 1; i <= q; i++) {
            persons[i] = new Person(sc.nextInt(), sc.nextInt());
            for (int j = dp.size() - 1; j >= 0; j--) {
                boolean ok = false;
                for (int x : dp.get(j)) {
                    if (persons[x].enable(persons[i])) {
                        if (j == dp.size() - 1) {
                            dp.add(new ArrayList<>());
                        }
                        dp.get(j + 1).add(i);
                        ok = true;
                        break;
                    }
                }
                if (ok) {
                    break;
                }
            }
        }
        System.out.println(dp.size() - 1);
    }
    
    static class Person {
        int left;
        int right;
        
        public Person(int left, int right) {
            this.left = left;
            this.right = right;
        }
        
        public boolean enable(Person another) {
            return left < another.left && right < another.right;
        }
    }
}
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