結果

問題 No.274 The Wall
ユーザー maspymaspy
提出日時 2020-03-12 21:58:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 543 ms / 2,000 ms
コード長 783 bytes
コンパイル時間 130 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 44,736 KB
最終ジャッジ日時 2024-06-22 02:35:54
合計ジャッジ時間 15,432 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 543 ms
44,736 KB
testcase_01 AC 527 ms
44,348 KB
testcase_02 AC 534 ms
44,540 KB
testcase_03 AC 528 ms
44,480 KB
testcase_04 AC 531 ms
44,476 KB
testcase_05 AC 531 ms
44,104 KB
testcase_06 AC 528 ms
44,216 KB
testcase_07 AC 526 ms
44,096 KB
testcase_08 AC 524 ms
43,960 KB
testcase_09 AC 527 ms
44,348 KB
testcase_10 AC 526 ms
44,224 KB
testcase_11 AC 531 ms
44,344 KB
testcase_12 AC 538 ms
44,104 KB
testcase_13 AC 529 ms
44,344 KB
testcase_14 AC 538 ms
44,348 KB
testcase_15 AC 535 ms
44,220 KB
testcase_16 AC 529 ms
44,220 KB
testcase_17 AC 542 ms
43,964 KB
testcase_18 AC 533 ms
44,220 KB
testcase_19 AC 530 ms
44,224 KB
testcase_20 AC 537 ms
44,352 KB
testcase_21 AC 535 ms
44,224 KB
testcase_22 AC 527 ms
43,832 KB
testcase_23 AC 530 ms
44,360 KB
testcase_24 AC 540 ms
44,104 KB
testcase_25 AC 538 ms
44,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3.8
# %%
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
import numpy as np
from operator import itemgetter

# %%
N, M = map(int, readline().split())
m = map(int, read().split())
LR = zip(m, m)


# %%
def solve(N, M, LR):
    blocks = []
    for L, R in LR:
        L1, R1 = M - 1 - R, M - 1 - L
        if L < L1:
            blocks.append((L, R))
        else:
            blocks.append((L1, R1))
    blocks.sort(key=itemgetter(0))
    A = np.zeros(M, np.int64)
    for L, R in blocks:
        if A[L: R + 1].any():
            A = A[::-1]
            if A[L: R + 1].any():
                return False
        A[L: R + 1] = 1
    return True


# %%
print('YES' if solve(N, M, LR) else 'NO')
0