結果

問題 No.2698 Many Asakatsu
ユーザー 👑 rin204rin204
提出日時 2024-03-22 22:32:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 868 ms / 2,000 ms
コード長 1,381 bytes
コンパイル時間 1,181 ms
コンパイル使用メモリ 82,604 KB
実行使用メモリ 111,064 KB
最終ジャッジ日時 2024-09-30 12:00:07
合計ジャッジ時間 14,409 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,276 KB
testcase_01 AC 37 ms
53,472 KB
testcase_02 AC 37 ms
52,400 KB
testcase_03 AC 36 ms
54,304 KB
testcase_04 AC 37 ms
52,964 KB
testcase_05 AC 38 ms
53,624 KB
testcase_06 AC 37 ms
53,116 KB
testcase_07 AC 96 ms
76,160 KB
testcase_08 AC 91 ms
75,908 KB
testcase_09 AC 92 ms
75,948 KB
testcase_10 AC 91 ms
75,924 KB
testcase_11 AC 159 ms
77,808 KB
testcase_12 AC 134 ms
76,548 KB
testcase_13 AC 121 ms
77,148 KB
testcase_14 AC 120 ms
77,036 KB
testcase_15 AC 140 ms
76,860 KB
testcase_16 AC 144 ms
77,084 KB
testcase_17 AC 123 ms
76,260 KB
testcase_18 AC 123 ms
77,352 KB
testcase_19 AC 140 ms
94,908 KB
testcase_20 AC 128 ms
94,576 KB
testcase_21 AC 143 ms
95,292 KB
testcase_22 AC 804 ms
111,064 KB
testcase_23 AC 795 ms
109,284 KB
testcase_24 AC 850 ms
109,792 KB
testcase_25 AC 817 ms
110,692 KB
testcase_26 AC 798 ms
109,224 KB
testcase_27 AC 830 ms
109,664 KB
testcase_28 AC 868 ms
95,328 KB
testcase_29 AC 512 ms
110,832 KB
testcase_30 AC 436 ms
110,632 KB
testcase_31 AC 837 ms
101,432 KB
testcase_32 AC 678 ms
110,116 KB
testcase_33 AC 137 ms
94,552 KB
testcase_34 AC 796 ms
110,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(n, m, A, B, Q, x, C):
    def f(i, x):
        a, b = A[i], B[i]
        x -= a
        if b == 0:
            return abs(x) * m
        p = x // b
        if p < 0:
            return m * (b * (m - 1)) // 2 - x * m
        elif p >= m:
            return x * m - m * (b * (m - 1)) // 2
        else:
            ret = x * (p + 1) - (p + 1) * (b * p) // 2
            ret += (m - 1 - p) * (b * (p + 1) + b * (m - 1)) // 2 - x * (m - 1 - p)
            return ret

    P = [0]
    thr = []
    i = 1
    while i < n:
        bi = P[-1]
        l = 0
        r = 1 << 60

        while r - l > 1:
            mid = (l + r) // 2
            if f(bi, mid) > f(i, mid):
                r = mid
            else:
                l = mid

        if not thr or thr[-1] <= r:
            P.append(i)
            thr.append(r)
            i += 1
        else:
            P.pop()
            thr.pop()

    p = 0
    ans = []

    for _ in range(Q):
        while p < len(P) - 1 and x >= thr[p]:
            p += 1
        ans.append(P[p] + 1)
        x += C[P[p]]
    return ans


if __name__ == "__main__":
    n, m = map(int, input().split())
    A = [0] * n
    B = [0] * n
    for i in range(n):
        A[i], B[i] = map(int, input().split())

    Q, x = map(int, input().split())
    C = list(map(int, input().split()))

    res = solve(n, m, A, B, Q, x, C)
    print(*res)
0