結果

問題 No.274 The Wall
ユーザー nebukuro09nebukuro09
提出日時 2016-10-20 23:46:31
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 171 ms / 2,000 ms
コード長 1,085 bytes
コンパイル時間 593 ms
コンパイル使用メモリ 76,572 KB
実行使用メモリ 79,780 KB
最終ジャッジ日時 2024-06-22 02:11:36
合計ジャッジ時間 4,325 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
75,420 KB
testcase_01 AC 67 ms
75,536 KB
testcase_02 AC 68 ms
75,284 KB
testcase_03 AC 95 ms
78,600 KB
testcase_04 AC 68 ms
75,684 KB
testcase_05 AC 65 ms
75,656 KB
testcase_06 AC 66 ms
75,532 KB
testcase_07 AC 65 ms
75,400 KB
testcase_08 AC 65 ms
75,516 KB
testcase_09 AC 68 ms
75,280 KB
testcase_10 AC 67 ms
75,684 KB
testcase_11 AC 86 ms
78,764 KB
testcase_12 AC 122 ms
79,352 KB
testcase_13 AC 77 ms
77,688 KB
testcase_14 AC 100 ms
78,124 KB
testcase_15 AC 126 ms
79,660 KB
testcase_16 AC 86 ms
78,764 KB
testcase_17 AC 86 ms
78,884 KB
testcase_18 AC 89 ms
78,476 KB
testcase_19 AC 155 ms
79,500 KB
testcase_20 AC 165 ms
79,780 KB
testcase_21 AC 171 ms
79,676 KB
testcase_22 AC 155 ms
79,636 KB
testcase_23 AC 160 ms
79,488 KB
testcase_24 AC 170 ms
79,760 KB
testcase_25 AC 169 ms
79,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, raw_input().split())
blocks = [map(int, raw_input().split()) for _ in xrange(N)]
rinsetsu = [[] for _ in xrange(N)]

for i in xrange(N):
    for j in xrange(i+1, N):
        L1, R1 = blocks[i]
        L2, R2 = blocks[j]
        L3, R3 = M-R2-1, M-L2-1
        b1 = not(R2 < L1 or R1 < L2)
        b2 = not(R3 < L1 or R1 < L3)
        if b1 and b2:
            print 'NO'
            exit()
        elif b1 or b2:
            rinsetsu[i].append(j)
            rinsetsu[j].append(i)

def dfs(start, color):
    color[start] = 0
    stack = [start]
    while len(stack) > 0:
        node = stack.pop()
        next_color = (color[node]+1)%2
        for next_node in rinsetsu[node]:
            if color[next_node] == -1:
                color[next_node] = next_color
                stack.append(next_node)
            elif color[next_node] != next_color:
                return False
    return color

color = [-1 for _ in xrange(N)]
for i in xrange(N):
    if color[i] == -1:
        color = dfs(i, color)
    if not color:
        print 'NO'
        exit()
print 'YES'
0