結果

問題 No.1557 Binary Variable
ユーザー tentententen
提出日時 2024-04-23 18:20:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 657 ms / 2,000 ms
コード長 1,816 bytes
コンパイル時間 2,538 ms
コンパイル使用メモリ 90,908 KB
実行使用メモリ 53,204 KB
最終ジャッジ日時 2024-10-15 19:03:36
合計ジャッジ時間 27,710 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 570 ms
52,016 KB
testcase_01 AC 585 ms
53,204 KB
testcase_02 AC 58 ms
36,712 KB
testcase_03 AC 59 ms
37,204 KB
testcase_04 AC 595 ms
50,404 KB
testcase_05 AC 619 ms
50,408 KB
testcase_06 AC 612 ms
50,672 KB
testcase_07 AC 621 ms
50,636 KB
testcase_08 AC 615 ms
51,868 KB
testcase_09 AC 630 ms
52,372 KB
testcase_10 AC 638 ms
51,452 KB
testcase_11 AC 644 ms
51,792 KB
testcase_12 AC 625 ms
52,720 KB
testcase_13 AC 628 ms
51,316 KB
testcase_14 AC 629 ms
51,848 KB
testcase_15 AC 629 ms
52,024 KB
testcase_16 AC 620 ms
51,480 KB
testcase_17 AC 641 ms
51,824 KB
testcase_18 AC 629 ms
52,148 KB
testcase_19 AC 656 ms
52,164 KB
testcase_20 AC 626 ms
51,748 KB
testcase_21 AC 636 ms
52,044 KB
testcase_22 AC 645 ms
51,952 KB
testcase_23 AC 629 ms
51,776 KB
testcase_24 AC 638 ms
52,072 KB
testcase_25 AC 631 ms
52,200 KB
testcase_26 AC 645 ms
51,856 KB
testcase_27 AC 622 ms
51,092 KB
testcase_28 AC 614 ms
51,160 KB
testcase_29 AC 657 ms
52,024 KB
testcase_30 AC 646 ms
52,852 KB
testcase_31 AC 626 ms
51,712 KB
testcase_32 AC 627 ms
52,664 KB
testcase_33 AC 647 ms
51,564 KB
testcase_34 AC 59 ms
37,312 KB
testcase_35 AC 60 ms
36,980 KB
testcase_36 AC 58 ms
37,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
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[] lefts = new int[m];
        int[] rights = new int[m];
        for (int i = 0; i < m; i++) {
            lefts[i] = sc.nextInt();
            rights[i] = sc.nextInt();
        }
        PriorityQueue<Integer> queue = new PriorityQueue<>((a, b) -> rights[a] == rights[b] ? lefts[a] - lefts[b] : rights[a] - rights[b]);
        for (int i = 0; i < m; i++) {
            queue.add(i);
        }
        int ans = n;
        int current = 0;
        while (queue.size() > 0) {
            int idx = queue.poll();
            if (lefts[idx] > current) {
                current = rights[idx];
                ans--;
            }
        }
        System.out.println(ans);
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}
0