結果

問題 No.1675 Strange Minimum Query
ユーザー tktk_snsntktk_snsn
提出日時 2021-09-10 22:04:42
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,094 ms / 2,000 ms
コード長 1,558 bytes
コンパイル時間 415 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 85,748 KB
最終ジャッジ日時 2024-06-12 00:15:13
合計ジャッジ時間 23,553 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,880 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 572 ms
68,720 KB
testcase_04 AC 539 ms
60,336 KB
testcase_05 AC 147 ms
19,456 KB
testcase_06 AC 679 ms
81,556 KB
testcase_07 AC 723 ms
83,656 KB
testcase_08 AC 31 ms
10,880 KB
testcase_09 AC 36 ms
11,264 KB
testcase_10 AC 600 ms
39,916 KB
testcase_11 AC 192 ms
18,816 KB
testcase_12 AC 659 ms
43,376 KB
testcase_13 AC 728 ms
42,240 KB
testcase_14 AC 1,094 ms
85,748 KB
testcase_15 AC 1,088 ms
85,632 KB
testcase_16 AC 31 ms
11,008 KB
testcase_17 AC 181 ms
16,512 KB
testcase_18 AC 231 ms
18,816 KB
testcase_19 AC 411 ms
22,784 KB
testcase_20 AC 590 ms
33,664 KB
testcase_21 AC 599 ms
31,616 KB
testcase_22 AC 728 ms
37,760 KB
testcase_23 AC 484 ms
31,872 KB
testcase_24 AC 509 ms
30,080 KB
testcase_25 AC 360 ms
24,960 KB
testcase_26 AC 245 ms
18,432 KB
testcase_27 AC 578 ms
30,080 KB
testcase_28 AC 351 ms
21,632 KB
testcase_29 AC 342 ms
19,712 KB
testcase_30 AC 251 ms
18,432 KB
testcase_31 AC 611 ms
37,760 KB
testcase_32 AC 888 ms
45,312 KB
testcase_33 AC 886 ms
45,184 KB
testcase_34 AC 892 ms
45,368 KB
testcase_35 AC 976 ms
47,488 KB
testcase_36 AC 986 ms
47,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
import sys
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)


class UF_tree:
    def __init__(self, n):
        self.root = [-1] * (n + 1)

    def find(self, x):
        stack = []
        while self.root[x] > 0:
            stack.append(x)
            x = self.root[x]
        for i in stack:
            self.root[i] = x
        return x

    def isSame(self, x, y):
        return self.find(x) == self.find(y)

    def unite(self, x, y):
        x = self.find(x)
        y = self.find(y)
        if x == y:
            return False
        if x < y:
            x, y = y, x
        self.root[x] += self.root[y]
        self.root[y] = x
        return True

    def size(self, x):
        return -self.root[self.find(x)]


def main():
    d = defaultdict(list)
    val = set()
    N, Q = map(int, input().split())
    for _ in range(Q):
        L, R, B = map(int, input().split())
        val.add(B)
        d[B].append((L, R))

    ans = [-1] * N
    uf = UF_tree(N)
    for v in sorted(val, reverse=True):
        for l, r in d[v]:
            l -= 1
            l = uf.find(l)
            if l < r:
                if ans[l] < 0:
                    ans[l] = v
            else:
                print(-1)
                return
        for l, r in d[v]:
            l -= 1
            l = uf.find(l)
            while l < r:
                uf.unite(l, l+1)
                l = uf.find(l)

    for i in range(N):
        if ans[i] < 0:
            ans[i] = 10 ** 9
    print(*ans)
    return


main()
0