結果

問題 No.511 落ちゲー 〜手作業のぬくもり〜
ユーザー maspymaspy
提出日時 2020-04-08 17:45:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 960 ms / 4,000 ms
コード長 2,127 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 192,576 KB
最終ジャッジ日時 2024-05-03 12:46:37
合計ジャッジ時間 9,253 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,404 KB
testcase_01 AC 34 ms
53,020 KB
testcase_02 AC 39 ms
53,880 KB
testcase_03 AC 40 ms
52,908 KB
testcase_04 AC 39 ms
53,008 KB
testcase_05 AC 37 ms
53,680 KB
testcase_06 AC 36 ms
53,004 KB
testcase_07 AC 36 ms
53,468 KB
testcase_08 AC 35 ms
53,816 KB
testcase_09 AC 36 ms
53,124 KB
testcase_10 AC 37 ms
52,744 KB
testcase_11 AC 37 ms
54,056 KB
testcase_12 AC 37 ms
52,840 KB
testcase_13 AC 36 ms
53,136 KB
testcase_14 AC 34 ms
52,872 KB
testcase_15 AC 34 ms
53,208 KB
testcase_16 AC 33 ms
53,208 KB
testcase_17 AC 33 ms
53,084 KB
testcase_18 AC 33 ms
53,264 KB
testcase_19 AC 32 ms
53,844 KB
testcase_20 AC 31 ms
53,336 KB
testcase_21 AC 73 ms
76,800 KB
testcase_22 AC 69 ms
76,208 KB
testcase_23 AC 65 ms
76,500 KB
testcase_24 AC 50 ms
67,088 KB
testcase_25 AC 69 ms
76,396 KB
testcase_26 AC 62 ms
76,380 KB
testcase_27 AC 73 ms
76,648 KB
testcase_28 AC 80 ms
76,568 KB
testcase_29 AC 960 ms
190,288 KB
testcase_30 AC 826 ms
175,092 KB
testcase_31 AC 738 ms
165,552 KB
testcase_32 AC 838 ms
192,576 KB
testcase_33 AC 692 ms
163,152 KB
testcase_34 AC 653 ms
159,052 KB
testcase_35 AC 944 ms
191,176 KB
testcase_36 AC 960 ms
191,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


class BinaryIndexedTree():
    def __init__(self, seq):
        self.size = len(seq)
        self.depth = self.size.bit_length()
        self.build(seq)

    def build(self, seq):
        data = seq
        size = self.size
        for i, x in enumerate(data):
            j = i + (i & (-i))
            if j < size:
                data[j] += data[i]
        self.data = data

    def __repr__(self):
        return self.data.__repr__()

    def get_sum(self, i):
        data = self.data
        s = 0
        while i:
            s += data[i]
            i -= i & -i
        return s

    def add(self, i, x):
        data = self.data
        size = self.size
        while i < size:
            data[i] += x
            i += i & -i

    def find_kth_element(self, k):
        data = self.data
        size = self.size
        x, sx = 0, 0
        dx = 1 << (self.depth)
        for i in range(self.depth - 1, -1, -1):
            dx = (1 << i)
            if x + dx >= size:
                continue
            y = x + dx
            sy = sx + data[y]
            if sy < k:
                x, sx = y, sy
        return x + 1


N, W, H = map(int, readline().split())
m = map(int, read().split())
query = tuple(zip(m, m, m))
left = [0] * (W + 1)  # 終わっていない
right = [0] + [N] * (W)  # 終わっている

while True:
    tasks = [[] for _ in range(N + 1)]  # 時刻ごとの調べる座標
    update = False
    for i, (x, y) in enumerate(zip(left, right)):
        if x + 1 < y:
            z = (x + y) // 2
            tasks[z].append(i)
            update = True
    if not update:
        break
    bit = BinaryIndexedTree([0] * (W + 2))
    for t, (a, b, x) in enumerate(query, 1):
        bit.add(x, b)
        bit.add(x + a, -b)
        for w in tasks[t]:
            if H <= bit.get_sum(w):
                right[w] = t
            else:
                left[w] = t

A = sum(x & 1 for x in right[1:])
B = W - A
print('A' if A > B else 'B' if B > A else 'DRAW')
0