結果

問題 No.274 The Wall
ユーザー rlangevinrlangevin
提出日時 2024-02-04 13:51:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 195 ms / 2,000 ms
コード長 3,430 bytes
コンパイル時間 328 ms
コンパイル使用メモリ 82,068 KB
実行使用メモリ 79,212 KB
最終ジャッジ日時 2024-09-28 11:15:56
合計ジャッジ時間 3,307 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,428 KB
testcase_01 AC 40 ms
54,336 KB
testcase_02 AC 42 ms
53,012 KB
testcase_03 AC 62 ms
68,440 KB
testcase_04 AC 36 ms
53,628 KB
testcase_05 AC 38 ms
54,532 KB
testcase_06 AC 36 ms
53,912 KB
testcase_07 AC 37 ms
53,476 KB
testcase_08 AC 40 ms
53,040 KB
testcase_09 AC 38 ms
53,072 KB
testcase_10 AC 36 ms
53,724 KB
testcase_11 AC 62 ms
70,412 KB
testcase_12 AC 98 ms
77,260 KB
testcase_13 AC 65 ms
72,984 KB
testcase_14 AC 102 ms
76,372 KB
testcase_15 AC 136 ms
78,040 KB
testcase_16 AC 63 ms
69,144 KB
testcase_17 AC 59 ms
68,304 KB
testcase_18 AC 60 ms
69,076 KB
testcase_19 AC 167 ms
78,636 KB
testcase_20 AC 186 ms
79,212 KB
testcase_21 AC 181 ms
78,424 KB
testcase_22 AC 189 ms
78,720 KB
testcase_23 AC 184 ms
78,564 KB
testcase_24 AC 195 ms
78,920 KB
testcase_25 AC 180 ms
78,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**7)
class DirectedGraph():
    def __init__(self, N):
        self.N = N
        self.G = [[] for i in range(N)]
        self.rG = [[] for i in range(N)]
        self.order = []
        self.group = [-1] * N
        self.label = 0

    def add_edge(self, u, v):
        self.G[u].append(v)
        self.rG[v].append(u)

    def dfs(self, s, used):
        used[s] = 1
        for u in self.G[s]:
            if used[u]:
                continue
            self.dfs(u, used)
        self.order.append(s)
        
    def rdfs(self, s, num, used):
        self.group[s] = num
        used[s] = 1
        for u in self.rG[s]:
            if used[u]:
                continue
            self.rdfs(u, num, used)

    def scc(self):
        used = [0] * self.N
        for i in range(self.N):
            if used[i]:
                continue
            self.dfs(i, used)
        used = [0] * self.N
        for s in reversed(self.order):
            if used[s]:
                continue
            self.rdfs(s, self.label, used)
            self.label += 1
        return self.label, self.group

    def construct(self):
        nG = [set() for _ in range(self.label)]
        mem = [[] for i in range(self.label)]
        for s in range(self.N):
            now = self.group[s]
            for u in self.G[s]:
                if now == self.group[u]:
                    continue
                nG[now].add(self.group[u])
            mem[now].append(s)
        return nG, mem


class TwoSAT():
    def __init__(self, N):
        self.G = DirectedGraph(2 * N)
        
    def add(self, x1, x2, f1, f2):
        if f1 == True and f2 == True:
            # ¬x1∪¬x2
            # (x1⇒¬x2)∩(x2⇒¬x1)
            self.G.add_edge(x1, x2 + N)
            self.G.add_edge(x2, x1 + N)
            
        if f1 == True and f2 == False:
            # ¬x1∪x2
            # (x1⇒x2)∩(¬x2⇒¬x1)
            self.G.add_edge(x1, x2)
            self.G.add_edge(x2 + N, x1 + N)
        
        if f1 == False and f2 == True:
            # x1∪¬x2
            # (¬x1⇒¬x2)∩(x2⇒x1)
            self.G.add_edge(x1 + N, x2 + N)
            self.G.add_edge(x2, x1)
            
        if f1 == False and f2 == False:
            # x1∪x2
            # (¬x1⇒x2)∩(¬x2⇒x1)
            self.G.add_edge(x1 + N, x2)
            self.G.add_edge(x2 + N, x1)
            
    def check(self):
        _, group = self.G.scc()
        for i in range(N):
            if group[i] == group[i + N]:
                return False
        return True
        

N, M = map(int, input().split())
L, R = [0] * N, [0] * N
cnt = 0
for i in range(N):
    L[i], R[i] = map(int, input().split())
    cnt += R[i] - L[i] + 1
    
if cnt > M:
    print("NO")
    exit()
    
def check(L1, R1, L2, R2):
    if R1 < L2 or R2 < L1:
        return True
    return False
    
TS = TwoSAT(N)
for i in range(N):
    for j in range(i + 1, N):
        if not check(L[i], R[i], L[j], R[j]):
            TS.add(i, j, True, True)
        if not check(L[i], R[i], M - 1 - R[j], M - 1 - L[j]):
            TS.add(i, j, True, False)
        if not check(M - 1 - R[i], M - 1 - L[i], L[j], R[j]):
            TS.add(i, j, False, True)
        if not check(M - 1 - R[i], M - 1 - L[i], M - 1 - R[j], M - 1 - L[j]):
            TS.add(i, j, False, False)
            
print("YES") if TS.check() else print("NO")
0