結果

問題 No.274 The Wall
ユーザー ぴろずぴろず
提出日時 2015-08-28 22:51:31
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,177 bytes
コンパイル時間 3,362 ms
コンパイル使用メモリ 79,732 KB
実行使用メモリ 46,052 KB
最終ジャッジ日時 2024-07-18 15:20:50
合計ジャッジ時間 8,357 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,556 KB
testcase_01 AC 125 ms
40,152 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 123 ms
40,008 KB
testcase_06 WA -
testcase_07 AC 134 ms
41,576 KB
testcase_08 AC 135 ms
41,384 KB
testcase_09 AC 138 ms
41,588 KB
testcase_10 AC 134 ms
41,156 KB
testcase_11 AC 219 ms
45,652 KB
testcase_12 AC 223 ms
45,472 KB
testcase_13 AC 160 ms
41,928 KB
testcase_14 AC 205 ms
43,444 KB
testcase_15 AC 215 ms
44,004 KB
testcase_16 AC 216 ms
45,280 KB
testcase_17 AC 211 ms
45,016 KB
testcase_18 AC 220 ms
44,956 KB
testcase_19 AC 220 ms
45,236 KB
testcase_20 AC 225 ms
46,052 KB
testcase_21 AC 232 ms
45,616 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 233 ms
45,756 KB
testcase_25 AC 229 ms
45,772 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{
				bl = m - 1 - bl;
				br = m - 1 - br;
				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