結果

問題 No.274 The Wall
ユーザー roarisroaris
提出日時 2019-12-06 15:13:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 163 ms / 2,000 ms
コード長 1,319 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 78,184 KB
最終ジャッジ日時 2024-06-22 02:34:02
合計ジャッジ時間 3,032 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,992 KB
testcase_01 AC 37 ms
54,376 KB
testcase_02 AC 39 ms
54,068 KB
testcase_03 AC 59 ms
70,248 KB
testcase_04 AC 36 ms
54,116 KB
testcase_05 AC 37 ms
54,632 KB
testcase_06 AC 36 ms
54,664 KB
testcase_07 AC 38 ms
54,316 KB
testcase_08 AC 37 ms
55,468 KB
testcase_09 AC 36 ms
54,548 KB
testcase_10 AC 37 ms
55,496 KB
testcase_11 AC 61 ms
71,200 KB
testcase_12 AC 105 ms
77,368 KB
testcase_13 AC 57 ms
68,376 KB
testcase_14 AC 91 ms
77,236 KB
testcase_15 AC 119 ms
77,480 KB
testcase_16 AC 64 ms
72,112 KB
testcase_17 AC 62 ms
70,720 KB
testcase_18 AC 60 ms
70,508 KB
testcase_19 AC 137 ms
77,604 KB
testcase_20 AC 159 ms
78,184 KB
testcase_21 AC 160 ms
77,588 KB
testcase_22 AC 136 ms
77,116 KB
testcase_23 AC 140 ms
77,356 KB
testcase_24 AC 156 ms
77,844 KB
testcase_25 AC 163 ms
78,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

def bfs(s):
    q = deque([])
    q.append((s, 1))
    
    while q:
        v, c = q.popleft()
        
        for nv in adj_list[v]:
            if color[nv]==-1:
                color[nv] = -c
                q.append((nv, color[nv]))
            else:
                if color[nv]==c:
                    return False
    
    return True

N, M = map(int, input().split())
LR = [tuple(map(int, input().split())) for _ in range(N)]
adj_list = [[] for _ in range(N)]

for i in range(N):
    Li, Ri = LR[i]
    
    for j in range(i+1, N):
        Lj, Rj = LR[j]
        a, b, c, d = Li, Ri, Lj, Rj
        
        if a>c:
            a, b, c, d = c, d, a, b
        
        if not b<c:
            flag1 = True
        else:
            flag1 = False
        
        Lj, Rj = M-1-Rj, M-1-Lj
        a, b, c, d = Li, Ri, Lj, Rj
        
        if a>c:
            a, b, c, d = c, d, a, b
        
        if not b<c:
            flag2 = True
        else:
            flag2 = False
            
        if flag1 and flag2:
            print('NO')
            exit()
        elif flag1 or flag2:
            adj_list[i].append(j)
            adj_list[j].append(i)

for i in range(N):
    color = [-1]*N
    
    if not bfs(i):
        print('NO')
        break
else:
    print('YES')
0