結果
問題 | No.274 The Wall |
ユーザー | zundamo-ti |
提出日時 | 2021-03-01 04:14:44 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,132 bytes |
コンパイル時間 | 188 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 107,136 KB |
最終ジャッジ日時 | 2024-10-03 00:44:26 |
合計ジャッジ時間 | 9,125 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 28 ms
10,752 KB |
testcase_02 | WA | - |
testcase_03 | AC | 184 ms
43,008 KB |
testcase_04 | AC | 29 ms
10,880 KB |
testcase_05 | AC | 28 ms
10,752 KB |
testcase_06 | AC | 29 ms
10,880 KB |
testcase_07 | AC | 29 ms
10,880 KB |
testcase_08 | AC | 29 ms
10,880 KB |
testcase_09 | AC | 28 ms
10,880 KB |
testcase_10 | AC | 29 ms
10,752 KB |
testcase_11 | AC | 551 ms
107,136 KB |
testcase_12 | AC | 632 ms
11,136 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 511 ms
36,736 KB |
testcase_17 | AC | 465 ms
35,840 KB |
testcase_18 | AC | 478 ms
37,504 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 654 ms
11,392 KB |
testcase_23 | AC | 652 ms
11,392 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
ソースコード
import sys readline = sys.stdin.readline def crossing(M, b0, b1): l0, r0 = b0 l1, r1 = b1 if l1 <= r0 and l0 <= r1: return True l0, r0 = M - 1 - r0, M - 1 - l0 if l1 <= r0 and l0 <= r1: return True return False def dfs(x, G, visited, finished, parity): visited[x] = True for y in G[x]: if visited[y]: if not finished[y] and parity == 1: return True continue dfs(y, G, visited, finished, 1 - parity) finished[x] = True return False def main(): N, M = map(int, readline().split()) blocks = [tuple(map(int, readline().split())) for _ in range(N)] G = [[] for _ in range(N)] for i in range(N): for j in range(i + 1, N): if crossing(M, blocks[i], blocks[j]): G[i].append(j) G[j].append(i) visited = [False] * N finished = [False] * N for x in range(N): if finished[x]: continue if dfs(x, G, visited, finished, 1): print('NO') return print('YES') if __name__ == "__main__": main()