結果

問題 No.759 悪くない忘年会にしような!
ユーザー matsu7874matsu7874
提出日時 2018-12-06 01:36:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,262 ms / 2,000 ms
コード長 1,613 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 112,784 KB
最終ジャッジ日時 2024-09-13 12:00:14
合計ジャッジ時間 27,014 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
65,872 KB
testcase_01 AC 51 ms
66,332 KB
testcase_02 AC 47 ms
65,848 KB
testcase_03 AC 52 ms
64,576 KB
testcase_04 AC 48 ms
64,568 KB
testcase_05 AC 47 ms
64,904 KB
testcase_06 AC 47 ms
64,696 KB
testcase_07 AC 48 ms
64,528 KB
testcase_08 AC 47 ms
64,960 KB
testcase_09 AC 48 ms
65,252 KB
testcase_10 AC 47 ms
64,428 KB
testcase_11 AC 48 ms
65,824 KB
testcase_12 AC 47 ms
65,008 KB
testcase_13 AC 47 ms
65,268 KB
testcase_14 AC 48 ms
66,160 KB
testcase_15 AC 47 ms
64,560 KB
testcase_16 AC 48 ms
66,096 KB
testcase_17 AC 48 ms
65,928 KB
testcase_18 AC 47 ms
65,368 KB
testcase_19 AC 48 ms
65,672 KB
testcase_20 AC 48 ms
65,736 KB
testcase_21 AC 48 ms
65,388 KB
testcase_22 AC 48 ms
65,664 KB
testcase_23 AC 48 ms
65,448 KB
testcase_24 AC 48 ms
66,112 KB
testcase_25 AC 48 ms
65,040 KB
testcase_26 AC 48 ms
64,540 KB
testcase_27 AC 47 ms
65,408 KB
testcase_28 AC 49 ms
65,340 KB
testcase_29 AC 49 ms
66,236 KB
testcase_30 AC 48 ms
65,456 KB
testcase_31 AC 48 ms
64,996 KB
testcase_32 AC 48 ms
64,444 KB
testcase_33 AC 206 ms
85,336 KB
testcase_34 AC 137 ms
84,444 KB
testcase_35 AC 198 ms
85,128 KB
testcase_36 AC 182 ms
85,280 KB
testcase_37 AC 140 ms
84,456 KB
testcase_38 AC 187 ms
85,568 KB
testcase_39 AC 126 ms
84,132 KB
testcase_40 AC 174 ms
84,704 KB
testcase_41 AC 228 ms
85,868 KB
testcase_42 AC 216 ms
85,608 KB
testcase_43 AC 238 ms
85,644 KB
testcase_44 AC 1,043 ms
104,904 KB
testcase_45 AC 1,262 ms
106,236 KB
testcase_46 AC 1,086 ms
105,056 KB
testcase_47 AC 1,058 ms
105,208 KB
testcase_48 AC 1,084 ms
105,704 KB
testcase_49 AC 203 ms
85,604 KB
testcase_50 AC 203 ms
85,388 KB
testcase_51 AC 217 ms
85,736 KB
testcase_52 AC 269 ms
86,468 KB
testcase_53 AC 1,001 ms
104,824 KB
testcase_54 AC 969 ms
105,068 KB
testcase_55 AC 1,101 ms
106,092 KB
testcase_56 AC 1,135 ms
106,284 KB
testcase_57 AC 1,142 ms
105,652 KB
testcase_58 AC 1,083 ms
105,600 KB
testcase_59 AC 1,057 ms
104,800 KB
testcase_60 AC 1,042 ms
104,948 KB
testcase_61 AC 1,109 ms
105,660 KB
testcase_62 AC 1,081 ms
105,320 KB
testcase_63 AC 1,097 ms
112,784 KB
testcase_64 AC 1,103 ms
112,556 KB
testcase_65 AC 932 ms
104,228 KB
testcase_66 AC 931 ms
112,676 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**5
    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