結果

問題 No.274 The Wall
ユーザー behoma8behoma8
提出日時 2023-03-07 16:11:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 415 ms / 2,000 ms
コード長 1,714 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 81,900 KB
実行使用メモリ 213,792 KB
最終ジャッジ日時 2024-09-18 02:09:43
合計ジャッジ時間 4,373 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
55,392 KB
testcase_01 AC 42 ms
54,344 KB
testcase_02 AC 37 ms
54,732 KB
testcase_03 AC 199 ms
121,252 KB
testcase_04 AC 37 ms
53,888 KB
testcase_05 AC 37 ms
54,144 KB
testcase_06 AC 39 ms
53,888 KB
testcase_07 AC 39 ms
54,144 KB
testcase_08 AC 46 ms
54,400 KB
testcase_09 AC 39 ms
53,888 KB
testcase_10 AC 36 ms
54,016 KB
testcase_11 AC 415 ms
213,792 KB
testcase_12 AC 110 ms
77,184 KB
testcase_13 AC 50 ms
64,640 KB
testcase_14 AC 90 ms
76,956 KB
testcase_15 AC 127 ms
77,804 KB
testcase_16 AC 256 ms
105,128 KB
testcase_17 AC 272 ms
105,172 KB
testcase_18 AC 276 ms
107,392 KB
testcase_19 AC 169 ms
78,336 KB
testcase_20 AC 171 ms
78,876 KB
testcase_21 AC 170 ms
78,196 KB
testcase_22 AC 181 ms
78,508 KB
testcase_23 AC 174 ms
78,208 KB
testcase_24 AC 176 ms
78,720 KB
testcase_25 AC 171 ms
78,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
import sys
import time 
from collections import defaultdict
from collections import deque
cur_time = time.perf_counter()

INF = sys.maxsize
sys.setrecursionlimit( 10 ** 8 )

def alg_graph_scc( gs, rgs, n ):
    """
        gs: 隣接リスト
        rgs: 逆向き隣接リスト
    """
    order = []
    used = [0]*n
    group = [None]*n
    def dfs(s):
        used[s] = 1
        for t in gs[s]:
            if not used[t]:
                dfs(t)
        order.append(s)
    def rdfs(s, col):
        group[s] = col
        used[s] = 1
        for t in rgs[s]:
            if not used[t]:
                rdfs(t, col)
    for i in range(n):
        if not used[i]:
            dfs(i)
    used = [0]*n
    label = 0
    for s in reversed(order):
        if not used[s]:
            rdfs(s, label)
            label += 1
    return label, group


N, M = [ int(i) for i in input().split() ]
LR = [ [ int(i) for i in input().split() ] for _ in range( N ) ]
def solve():

    LRT = []
    for l, r in LR:
        LRT.append( ( M - 1 - r, M - 1 - l ) )

    gs = [[] for _ in range(2*N)]
    for i in range(N):
        l0, r0 = LR[i]
        for j in range(N):
            if i != j:
                l1, r1 = LRT[j]
                if not ( r0 < l1 or r1 < l0 ): # conflict
                    gs[i].append( j )
                    gs[N+i].append( N+j )
                l1, r1 = LR[j]
                if not( r0 < l1 or r1 < l0 ): # conflict
                    gs[i].append( N+j )
                    gs[N+i].append( j )

    label, group = alg_graph_scc( gs, gs, 2*N )
    for i in range(N):
        if group[i] == group[i+N]:
            print( 'NO' )
            return
    print( 'YES' )

solve()
0