結果

問題 No.759 悪くない忘年会にしような!
ユーザー matsu7874matsu7874
提出日時 2018-12-06 02:50:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,056 ms / 2,000 ms
コード長 1,675 bytes
コンパイル時間 770 ms
コンパイル使用メモリ 81,708 KB
実行使用メモリ 107,116 KB
最終ジャッジ日時 2024-09-13 12:53:34
合計ジャッジ時間 23,742 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
60,000 KB
testcase_01 AC 45 ms
60,860 KB
testcase_02 AC 43 ms
60,496 KB
testcase_03 AC 43 ms
60,012 KB
testcase_04 AC 42 ms
60,204 KB
testcase_05 AC 42 ms
59,848 KB
testcase_06 AC 43 ms
59,500 KB
testcase_07 AC 42 ms
59,812 KB
testcase_08 AC 42 ms
59,744 KB
testcase_09 AC 43 ms
59,512 KB
testcase_10 AC 43 ms
60,100 KB
testcase_11 AC 42 ms
59,864 KB
testcase_12 AC 42 ms
60,216 KB
testcase_13 AC 41 ms
59,920 KB
testcase_14 AC 42 ms
61,316 KB
testcase_15 AC 42 ms
60,216 KB
testcase_16 AC 43 ms
59,328 KB
testcase_17 AC 44 ms
59,892 KB
testcase_18 AC 43 ms
59,948 KB
testcase_19 AC 44 ms
60,616 KB
testcase_20 AC 44 ms
60,736 KB
testcase_21 AC 43 ms
60,384 KB
testcase_22 AC 43 ms
59,456 KB
testcase_23 AC 43 ms
59,852 KB
testcase_24 AC 42 ms
60,380 KB
testcase_25 AC 43 ms
59,428 KB
testcase_26 AC 43 ms
59,808 KB
testcase_27 AC 42 ms
59,928 KB
testcase_28 AC 42 ms
60,436 KB
testcase_29 AC 42 ms
60,224 KB
testcase_30 AC 43 ms
61,420 KB
testcase_31 AC 43 ms
60,432 KB
testcase_32 AC 42 ms
60,424 KB
testcase_33 AC 186 ms
79,968 KB
testcase_34 AC 126 ms
77,844 KB
testcase_35 AC 162 ms
78,644 KB
testcase_36 AC 199 ms
79,448 KB
testcase_37 AC 113 ms
78,056 KB
testcase_38 AC 216 ms
79,560 KB
testcase_39 AC 129 ms
78,284 KB
testcase_40 AC 169 ms
79,296 KB
testcase_41 AC 179 ms
79,236 KB
testcase_42 AC 177 ms
79,756 KB
testcase_43 AC 207 ms
80,028 KB
testcase_44 AC 783 ms
98,084 KB
testcase_45 AC 774 ms
98,488 KB
testcase_46 AC 929 ms
98,408 KB
testcase_47 AC 762 ms
98,364 KB
testcase_48 AC 1,056 ms
100,056 KB
testcase_49 AC 176 ms
79,748 KB
testcase_50 AC 198 ms
79,940 KB
testcase_51 AC 236 ms
80,428 KB
testcase_52 AC 215 ms
79,820 KB
testcase_53 AC 893 ms
98,712 KB
testcase_54 AC 860 ms
98,668 KB
testcase_55 AC 849 ms
98,464 KB
testcase_56 AC 1,010 ms
99,428 KB
testcase_57 AC 1,010 ms
99,164 KB
testcase_58 AC 828 ms
99,124 KB
testcase_59 AC 923 ms
99,260 KB
testcase_60 AC 758 ms
98,804 KB
testcase_61 AC 698 ms
98,760 KB
testcase_62 AC 811 ms
98,980 KB
testcase_63 AC 766 ms
106,320 KB
testcase_64 AC 832 ms
107,116 KB
testcase_65 AC 785 ms
98,924 KB
testcase_66 AC 816 ms
105,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class SegmentTree():

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

    def update(self, target, new_value):
        target += self.size - 1
        self.st[target] = new_value
        while target > 0:
            parent = (target - 1) >> 1
            if self.st[parent] < self.st[target]:
                self.st[parent] = self.st[target]
                target = parent
            else:
                break

    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 << 1) + 1, l, (l + r) >> 1)
        vr = self._query(a, b, (k << 1) + 2, (l + r) >> 1, 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