結果

問題 No.274 The Wall
ユーザー tjaketjake
提出日時 2020-10-18 20:58:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 188 ms / 2,000 ms
コード長 1,871 bytes
コンパイル時間 285 ms
コンパイル使用メモリ 87,208 KB
実行使用メモリ 79,636 KB
最終ジャッジ日時 2023-09-28 12:05:34
合計ジャッジ時間 4,688 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
71,340 KB
testcase_01 AC 75 ms
71,192 KB
testcase_02 AC 76 ms
71,028 KB
testcase_03 AC 88 ms
76,412 KB
testcase_04 AC 75 ms
71,340 KB
testcase_05 AC 74 ms
71,176 KB
testcase_06 AC 75 ms
70,960 KB
testcase_07 AC 74 ms
71,236 KB
testcase_08 AC 76 ms
71,188 KB
testcase_09 AC 75 ms
71,236 KB
testcase_10 AC 75 ms
71,372 KB
testcase_11 AC 83 ms
76,304 KB
testcase_12 AC 108 ms
76,836 KB
testcase_13 AC 87 ms
75,404 KB
testcase_14 AC 118 ms
77,988 KB
testcase_15 AC 139 ms
78,324 KB
testcase_16 AC 84 ms
75,964 KB
testcase_17 AC 83 ms
76,408 KB
testcase_18 AC 86 ms
76,044 KB
testcase_19 AC 174 ms
79,480 KB
testcase_20 AC 188 ms
79,488 KB
testcase_21 AC 184 ms
79,596 KB
testcase_22 AC 186 ms
79,360 KB
testcase_23 AC 181 ms
79,392 KB
testcase_24 AC 186 ms
79,528 KB
testcase_25 AC 187 ms
79,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline
write = sys.stdout.write
sys.setrecursionlimit(10**5)
def scc(N, G, RG):
    order = []
    used = [0]*N
    group = [None]*N
    def dfs(s):
        used[s] = 1
        for t in G[s]:
            if not used[t]:
                dfs(t)
        order.append(s)
    def rdfs(s, col):
        group[s] = col
        used[s] = 1
        for t in RG[s]:
            if not used[t]:
                rdfs(t, col)
    for i in range(N):
        if not used[i]:
            dfs(i)
    used = [0]*N
    label = 0
    order.reverse()
    for s in order:
        if not used[s]:
            rdfs(s, label)
            label += 1
    return label, group
def solve():
    N, M = map(int, readline().split())
    S = [tuple(map(int, readline().split())) for i in range(N)]

    G = [[] for i in range(2*N)]
    RG = [[] for i in range(2*N)]
    def add_edge(i, neg_i, j, neg_j):
        if neg_i:
            i0 = i+N; i1 = i
        else:
            i0 = i; i1 = i+N
        if neg_j:
            j0 = j+N; j1 = j
        else:
            j0 = j; j1 = j+N
        G[i1].append(j0); RG[j0].append(i1)
        G[j1].append(i0); RG[i0].append(j1)

    for i in range(N):
        li, ri = S[i]
        for j in range(i+1, N):
            lj, rj = S[j]
            p = q = 0
            if (li <= rj and lj <= ri):
                add_edge(i, 0, j, 0)
                add_edge(i, 1, j, 1)
                p = 1
            if (li <= M-1-lj and M-1-rj <= ri):
                add_edge(i, 0, j, 1)
                add_edge(i, 1, j, 0)
                q = 1
            if p and q:
                write("NO\n")
                return
    label, group = scc(2*N, G, RG)

    ok = 1
    for i in range(N):
        if group[i] == group[i+N]:
            ok = 0
            break
    if ok:
        write("YES\n")
    else:
        write("NO\n")
solve()
0