結果

問題 No.2716 Falcon Method
ユーザー rlangevinrlangevin
提出日時 2024-04-07 01:17:33
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,966 bytes
コンパイル時間 280 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 102,944 KB
最終ジャッジ日時 2024-10-01 04:19:01
合計ジャッジ時間 16,155 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,736 KB
testcase_01 AC 38 ms
52,992 KB
testcase_02 AC 35 ms
53,248 KB
testcase_03 AC 38 ms
52,992 KB
testcase_04 AC 37 ms
52,992 KB
testcase_05 AC 37 ms
52,864 KB
testcase_06 AC 76 ms
75,776 KB
testcase_07 AC 79 ms
76,044 KB
testcase_08 AC 84 ms
76,320 KB
testcase_09 AC 78 ms
76,032 KB
testcase_10 AC 74 ms
75,776 KB
testcase_11 AC 1,038 ms
100,960 KB
testcase_12 AC 837 ms
99,700 KB
testcase_13 AC 732 ms
97,808 KB
testcase_14 AC 937 ms
97,412 KB
testcase_15 AC 774 ms
97,304 KB
testcase_16 WA -
testcase_17 AC 940 ms
98,284 KB
testcase_18 WA -
testcase_19 AC 808 ms
96,196 KB
testcase_20 AC 704 ms
97,516 KB
testcase_21 AC 883 ms
97,280 KB
testcase_22 AC 1,185 ms
102,924 KB
testcase_23 AC 1,228 ms
102,924 KB
testcase_24 AC 1,180 ms
102,944 KB
testcase_25 AC 37 ms
52,224 KB
testcase_26 AC 37 ms
52,864 KB
testcase_27 WA -
testcase_28 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

class Fenwick_Tree:
    def __init__(self, n):
        self._n = n
        self.data = [0] * n

    def add(self, p, x):
        assert 0 <= p < self._n
        p += 1
        while p <= self._n:
            self.data[p - 1] += x
            p += p & -p

    def sum(self, l, r):
        assert 0 <= l <= r <= self._n
        return self._sum(r) - self._sum(l)

    def _sum(self, r):
        s = 0
        while r > 0:
            s += self.data[r - 1]
            r -= r & -r
        return s

    def get(self, k):
        k += 1
        x, r = 0, 1
        while r < self._n:
            r <<= 1
        len = r
        while len:
            if x + len - 1 < self._n:
                if self.data[x + len - 1] < k:
                    k -= self.data[x + len - 1]
                    x += len
            len >>= 1
        return x

    def __str__(self):
        temp = []
        for i in range(self._n):
            temp.append(str(self.sum(i, i + 1)))
        return ' '.join(temp)


N, Q = map(int, input().split())
S = list(input())
h = S.count("D")
w = N - h
T1 = Fenwick_Tree(3 * N)
T2 = Fenwick_Tree(3 * N)
for i in range(N):
    if S[i] == "D":
        T1.add(i, 1)
        T1.add(i + N, 1)
        T1.add(i + 2 * N, 1)
    else:
        T2.add(i, 1)
        T2.add(i + N, 1)
        T2.add(i + 2 * N, 1)
        
def BinarySearch(check, yes = 10 ** 18, no = -1):
    while abs(yes - no) != 1:
        mid = (yes + no)//2
        if check(mid):
            yes = mid
        else:
            no = mid
    return yes

def check1(m):
    return (H - h * m) >= 0 and (W - w * m) >= 0

def check2(r):
    x = T1.sum(P, r)
    y = T2.sum(P, r)
    return H - x <= 0 or W - y <= 0

for _ in range(Q):
    H, W, P = map(int, input().split())
    m = BinarySearch(check1, 0, 10 ** 9 + 5)
    H -= m * h
    W -= m * w
    if H == 0 or W == 0:
        print(P)
        continue
    print(BinarySearch(check2, 3 * N, P)%N)
0