結果

問題 No.674 n連勤
ユーザー maspymaspy
提出日時 2020-03-21 14:53:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 297 ms / 2,000 ms
コード長 1,723 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 27,888 KB
最終ジャッジ日時 2024-06-02 03:52:10
合計ジャッジ時間 3,455 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
11,008 KB
testcase_01 AC 28 ms
11,008 KB
testcase_02 AC 28 ms
10,880 KB
testcase_03 AC 27 ms
11,008 KB
testcase_04 AC 27 ms
11,008 KB
testcase_05 AC 28 ms
11,008 KB
testcase_06 AC 28 ms
11,008 KB
testcase_07 AC 27 ms
10,880 KB
testcase_08 AC 28 ms
10,880 KB
testcase_09 AC 27 ms
11,008 KB
testcase_10 AC 29 ms
10,880 KB
testcase_11 AC 46 ms
12,632 KB
testcase_12 AC 49 ms
12,032 KB
testcase_13 AC 113 ms
17,272 KB
testcase_14 AC 233 ms
27,728 KB
testcase_15 AC 236 ms
26,104 KB
testcase_16 AC 288 ms
27,888 KB
testcase_17 AC 297 ms
27,744 KB
testcase_18 AC 239 ms
25,408 KB
testcase_19 AC 253 ms
27,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/ python3.8
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines


class UnionFind:
    def __init__(self, N):
        self.root = list(range(N))
        self.size = [1] * (N)
        self.left_end = list(range(N))
        self.right_end = list(range(N))

    def find_root(self, x):
        root = self.root
        while root[x] != x:
            root[x] = root[root[x]]
            x = root[x]
        return x

    def merge(self, x, y):
        x = self.find_root(x)
        y = self.find_root(y)
        if x == y:
            return False
        sx, sy = self.size[x], self.size[y]
        if sx < sy:
            self.root[x] = y
            self.size[y] += sx
            self.left_end[y] = min(self.left_end[x], self.left_end[y])
            self.right_end[y] = max(self.right_end[x], self.right_end[y])
        else:
            self.root[y] = x
            self.size[x] += sy
            self.left_end[x] = min(self.left_end[x], self.left_end[y])
            self.right_end[x] = max(self.right_end[x], self.right_end[y])
        return True


D, Q = map(int, readline().split())
m = map(int, read().split())
A, B = zip(*zip(m, m))
B = tuple(b + 1 for b in B)

X = sorted(set(A + B))
x_to_i = {v: i for i, v in enumerate(sorted(set(A + B)))}

uf = UnionFind(len(X))
find = uf.find_root
merge = uf.merge
answer = 0
for a, b in zip(A, B):
    a = x_to_i[a]
    b = x_to_i[b]
    a = uf.right_end[find(a)]
    b = uf.left_end[find(b)]
    while a < b:
        merge(a, a + 1)
        a = uf.right_end[find(a)]
    b = find(b)
    width = X[uf.right_end[b]] - X[uf.left_end[b]]
    if answer < width:
        answer = width
    print(answer)
0