結果

問題 No.759 悪くない忘年会にしような!
ユーザー matsu7874matsu7874
提出日時 2018-12-06 02:37:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 977 ms / 2,000 ms
コード長 1,613 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 106,800 KB
最終ジャッジ日時 2024-09-13 12:30:31
合計ジャッジ時間 21,721 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
60,568 KB
testcase_01 AC 42 ms
60,568 KB
testcase_02 AC 44 ms
60,164 KB
testcase_03 AC 43 ms
59,324 KB
testcase_04 AC 44 ms
59,992 KB
testcase_05 AC 42 ms
59,432 KB
testcase_06 AC 43 ms
60,820 KB
testcase_07 AC 44 ms
60,300 KB
testcase_08 AC 44 ms
59,760 KB
testcase_09 AC 43 ms
60,836 KB
testcase_10 AC 43 ms
60,060 KB
testcase_11 AC 43 ms
60,288 KB
testcase_12 AC 43 ms
60,948 KB
testcase_13 AC 43 ms
59,760 KB
testcase_14 AC 42 ms
59,432 KB
testcase_15 AC 42 ms
60,084 KB
testcase_16 AC 42 ms
60,396 KB
testcase_17 AC 42 ms
60,032 KB
testcase_18 AC 42 ms
59,552 KB
testcase_19 AC 43 ms
59,872 KB
testcase_20 AC 42 ms
60,244 KB
testcase_21 AC 42 ms
59,520 KB
testcase_22 AC 43 ms
59,616 KB
testcase_23 AC 43 ms
60,760 KB
testcase_24 AC 44 ms
60,664 KB
testcase_25 AC 43 ms
61,304 KB
testcase_26 AC 43 ms
61,424 KB
testcase_27 AC 43 ms
60,920 KB
testcase_28 AC 42 ms
60,040 KB
testcase_29 AC 43 ms
60,088 KB
testcase_30 AC 43 ms
60,216 KB
testcase_31 AC 42 ms
60,632 KB
testcase_32 AC 42 ms
61,420 KB
testcase_33 AC 189 ms
79,468 KB
testcase_34 AC 131 ms
77,828 KB
testcase_35 AC 159 ms
78,848 KB
testcase_36 AC 201 ms
79,836 KB
testcase_37 AC 114 ms
78,380 KB
testcase_38 AC 215 ms
80,192 KB
testcase_39 AC 126 ms
78,124 KB
testcase_40 AC 167 ms
79,288 KB
testcase_41 AC 179 ms
79,508 KB
testcase_42 AC 173 ms
79,588 KB
testcase_43 AC 200 ms
79,764 KB
testcase_44 AC 682 ms
98,268 KB
testcase_45 AC 743 ms
98,464 KB
testcase_46 AC 724 ms
98,856 KB
testcase_47 AC 685 ms
98,720 KB
testcase_48 AC 878 ms
99,828 KB
testcase_49 AC 163 ms
79,980 KB
testcase_50 AC 188 ms
79,848 KB
testcase_51 AC 228 ms
80,684 KB
testcase_52 AC 210 ms
80,444 KB
testcase_53 AC 858 ms
99,168 KB
testcase_54 AC 814 ms
98,440 KB
testcase_55 AC 834 ms
98,476 KB
testcase_56 AC 955 ms
99,356 KB
testcase_57 AC 977 ms
99,596 KB
testcase_58 AC 798 ms
98,976 KB
testcase_59 AC 942 ms
98,852 KB
testcase_60 AC 812 ms
98,668 KB
testcase_61 AC 756 ms
98,504 KB
testcase_62 AC 837 ms
99,364 KB
testcase_63 AC 792 ms
106,800 KB
testcase_64 AC 733 ms
106,784 KB
testcase_65 AC 732 ms
99,564 KB
testcase_66 AC 732 ms
105,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class SegmentTree():

    def __init__(self, size, initial=-1):
        node_size = 1
        while node_size < size:
            node_size <<= 1
        self.st = [initial] * (2 * node_size - 1)
        self.size = node_size

    def update(self, target, new_value):
        target += self.size - 1
        self.st[target] = new_value
        while target > 0:
            target = (target - 1) // 2
            self.st[target] = max(self.st[target * 2 + 1],
                                  self.st[target * 2 + 2])

    def query(self, a, b):
        # [a,b)の最大値を求める。
        return self._query(a, b, 0, 0, self.size)

    def _query(self, a, b, k, l, r):
        if r <= a or b <= l:
            return -1
        if a <= l and r <= b:
            return self.st[k]
        vl = self._query(a, b, k * 2 + 1, l, (l + r) // 2)
        vr = self._query(a, b, k * 2 + 2, (l + r) // 2, r)
        return max(vl, vr)


def main():
    n = int(input())

    points = [tuple(map(int, input().split())) for i in range(n)]

    v_max = 10**4
    partition_by_r = [[] for i in range(v_max + 1)]


    pt_max = SegmentTree(v_max + 1, -1)
    res = []

    for i, point in enumerate(points):
        p, t, r = point
        partition_by_r[r].append((p, t, i + 1))
    for ptis in partition_by_r[::-1]:
        ptis.sort(reverse=True)
        for pti in ptis:
            p, t, i = pti
            if t > pt_max.query(p, v_max + 1):
                res.append(i)
                pt_max.update(p, t)

    res.sort()
    for point_id in res:
        print(point_id)


if __name__ == '__main__':
    main()
0