結果

問題 No.274 The Wall
ユーザー htensaihtensai
提出日時 2020-01-09 12:58:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 104 ms / 2,000 ms
コード長 1,918 bytes
コンパイル時間 2,628 ms
コンパイル使用メモリ 80,516 KB
実行使用メモリ 52,112 KB
最終ジャッジ日時 2024-06-22 02:34:38
合計ジャッジ時間 4,996 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
50,452 KB
testcase_01 AC 48 ms
50,064 KB
testcase_02 AC 48 ms
50,008 KB
testcase_03 AC 67 ms
51,044 KB
testcase_04 AC 48 ms
50,236 KB
testcase_05 AC 47 ms
50,260 KB
testcase_06 AC 48 ms
50,484 KB
testcase_07 AC 47 ms
50,492 KB
testcase_08 AC 49 ms
50,184 KB
testcase_09 AC 46 ms
50,508 KB
testcase_10 AC 46 ms
50,460 KB
testcase_11 AC 87 ms
51,700 KB
testcase_12 AC 101 ms
51,772 KB
testcase_13 AC 52 ms
50,440 KB
testcase_14 AC 79 ms
51,540 KB
testcase_15 AC 78 ms
51,608 KB
testcase_16 AC 89 ms
51,700 KB
testcase_17 AC 90 ms
51,360 KB
testcase_18 AC 81 ms
51,172 KB
testcase_19 AC 99 ms
51,840 KB
testcase_20 AC 93 ms
51,676 KB
testcase_21 AC 94 ms
52,112 KB
testcase_22 AC 100 ms
51,980 KB
testcase_23 AC 90 ms
51,728 KB
testcase_24 AC 104 ms
51,908 KB
testcase_25 AC 102 ms
51,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String[] first = br.readLine().split(" ", 2);
        int n = Integer.parseInt(first[0]);
        int m = Integer.parseInt(first[1]);
        PriorityQueue<Block> queue = new PriorityQueue<>();
        for (int i = 0; i < n; i++) {
            queue.add(new Block(m, br.readLine()));
        }
        int start = -1;
        while (queue.size() > 0) {
            Block b = queue.poll();
            if (start < b.left) {
                start = b.right;
            } else {
                b.reverse();
                if (start < b.left) {
                    queue.add(b);
                } else {
                    System.out.println("NO");
                    return;
                }
            }
        }
        System.out.println("YES");
    }
    
    static class Block implements Comparable<Block> {
        int size;
        int left;
        int right;
        
        public Block(int size, String line) {
            this.size = size;
            String[] arr = line.split(" ", 2);
            left = Integer.parseInt(arr[0]);
            right = Integer.parseInt(arr[1]);
            if (left > size - right - 1) {
                reverse();
            }
        }
        
        public int compareTo(Block another) {
            if (left == another.left) {
                return right - another.right;
            } else {
                return left - another.left;
            }
        }
        
        public void reverse() {
            int tmp = right;
            right = size - left - 1;
            left = size - tmp - 1;
        }
        
        public String toString() {
            return "size:" + size + " left:" + left + " right:" + right;
        }
    }
}
0