結果

問題 No.274 The Wall
ユーザー lloyzlloyz
提出日時 2023-09-19 01:09:05
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 676 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 74,852 KB
最終ジャッジ日時 2024-07-05 14:00:39
合計ジャッジ時間 2,653 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,480 KB
testcase_01 AC 37 ms
57,088 KB
testcase_02 AC 36 ms
57,728 KB
testcase_03 AC 65 ms
69,504 KB
testcase_04 AC 34 ms
52,224 KB
testcase_05 AC 34 ms
52,224 KB
testcase_06 AC 33 ms
52,224 KB
testcase_07 AC 34 ms
51,968 KB
testcase_08 AC 34 ms
52,096 KB
testcase_09 AC 35 ms
52,096 KB
testcase_10 AC 41 ms
58,752 KB
testcase_11 AC 68 ms
71,424 KB
testcase_12 AC 72 ms
73,600 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 71 ms
73,088 KB
testcase_17 AC 72 ms
73,600 KB
testcase_18 AC 72 ms
72,960 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 71 ms
73,472 KB
testcase_23 AC 72 ms
73,216 KB
testcase_24 WA -
testcase_25 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
LR = [list(map(int, input().split())) for _ in range(n)]

LR.sort(key=lambda x: (-(x[1] - x[0]), x[0]))
DP = [0 for _ in range(m)]
for i in range(n):
    l, r = LR[i]
    flag = True
    for j in range(l, r + 1):
        if DP[j]:
            flag = False
            break
    if flag:
        for j in range(l, r + 1):
            DP[j] = 1
        continue
    l, r = m - 1 - r, m - 1 - l
    flag = True
    for j in range(l, r + 1):
        if DP[j]:
            flag = False
            break
    if flag:
        for j in range(l, r + 1):
            DP[j] = 1
        continue
    else:
        print("NO")
        exit()
print("YES")
0