結果

問題 No.274 The Wall
ユーザー tjaketjake
提出日時 2020-10-18 20:55:07
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 1,728 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,572 KB
実行使用メモリ 609,512 KB
最終ジャッジ日時 2024-07-21 06:43:54
合計ジャッジ時間 6,916 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,624 KB
testcase_01 AC 38 ms
53,328 KB
testcase_02 AC 38 ms
52,892 KB
testcase_03 AC 652 ms
319,052 KB
testcase_04 AC 36 ms
52,748 KB
testcase_05 AC 37 ms
53,200 KB
testcase_06 AC 37 ms
53,312 KB
testcase_07 AC 37 ms
52,992 KB
testcase_08 AC 37 ms
53,760 KB
testcase_09 AC 38 ms
52,864 KB
testcase_10 AC 37 ms
52,808 KB
testcase_11 MLE -
testcase_12 AC 71 ms
68,500 KB
testcase_13 AC 51 ms
62,560 KB
testcase_14 AC 79 ms
74,296 KB
testcase_15 AC 108 ms
77,812 KB
testcase_16 AC 558 ms
284,368 KB
testcase_17 AC 517 ms
270,408 KB
testcase_18 AC 593 ms
293,528 KB
testcase_19 AC 137 ms
78,064 KB
testcase_20 AC 154 ms
79,092 KB
testcase_21 AC 148 ms
78,956 KB
testcase_22 AC 154 ms
79,092 KB
testcase_23 AC 146 ms
77,892 KB
testcase_24 AC 152 ms
78,604 KB
testcase_25 AC 155 ms
78,680 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]
            if (li <= rj and lj <= ri):
                add_edge(i, 0, j, 0)
                add_edge(i, 1, j, 1)
            if (li <= M-1-lj and M-1-rj <= ri):
                add_edge(i, 0, j, 1)
                add_edge(i, 1, j, 0)
    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