結果

問題 No.274 The Wall
ユーザー ぴろずぴろず
提出日時 2015-08-28 22:59:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 219 ms / 2,000 ms
コード長 1,198 bytes
コンパイル時間 2,076 ms
コンパイル使用メモリ 87,488 KB
実行使用メモリ 57,704 KB
最終ジャッジ日時 2024-06-22 01:58:23
合計ジャッジ時間 7,004 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
54,072 KB
testcase_01 AC 118 ms
53,984 KB
testcase_02 AC 117 ms
54,036 KB
testcase_03 AC 180 ms
57,144 KB
testcase_04 AC 112 ms
54,048 KB
testcase_05 AC 117 ms
54,056 KB
testcase_06 AC 99 ms
52,852 KB
testcase_07 AC 107 ms
53,836 KB
testcase_08 AC 113 ms
54,124 KB
testcase_09 AC 102 ms
53,012 KB
testcase_10 AC 116 ms
54,116 KB
testcase_11 AC 188 ms
57,200 KB
testcase_12 AC 186 ms
57,492 KB
testcase_13 AC 141 ms
54,000 KB
testcase_14 AC 177 ms
56,540 KB
testcase_15 AC 180 ms
56,720 KB
testcase_16 AC 181 ms
56,612 KB
testcase_17 AC 177 ms
57,164 KB
testcase_18 AC 183 ms
56,904 KB
testcase_19 AC 219 ms
56,940 KB
testcase_20 AC 198 ms
57,644 KB
testcase_21 AC 182 ms
57,704 KB
testcase_22 AC 195 ms
57,476 KB
testcase_23 AC 193 ms
57,232 KB
testcase_24 AC 195 ms
57,544 KB
testcase_25 AC 200 ms
57,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no274;

import java.util.Arrays;
import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		System.out.println(new Main().solve() ? "YES" : "NO");
	}

	int m;

	public boolean solve() {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		m = sc.nextInt();
		Block[] b = new Block[n];
		for(int i=0;i<n;i++) {
			b[i] = new Block(sc.nextInt(),sc.nextInt());
		}
		Arrays.sort(b);
		int l = 0;
		int r = m-1;
		for(int i=0;i<n;i++) {
			int bl = b[i].l;
			int br = b[i].r;
			if (l <= bl) {
				if (br > r) {
					return false;
				}
				l = br + 1;
			}else{
				int temp = bl;
				bl = m - 1 - br;
				br = m - 1 - temp;
				if (l <= bl && br <= r) {
					r = bl - 1;
				}else{
					return false;
				}
			}
		}
		return true;
	}

	class Block implements Comparable<Block>{
		int l,r;
		public Block(int l,int r) {
			if (l <= m-1-r) {
				this.l = l;
				this.r = r;
			}else{
				this.l = m - 1 - r;
				this.r = m - 1 - l;
			}
		}
		public int compareTo(Block o) {
			if (l != o.l) {
				return Integer.compare(l, o.l);
			}
			return Integer.compare(r, o.r);
		}
		public String toString() {
			return "[" + l + "," + r + "]";
		}
	}

}
0