結果

問題 No.2462 七人カノン
ユーザー ntudantuda
提出日時 2023-09-09 00:31:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 356 ms / 2,000 ms
コード長 1,015 bytes
コンパイル時間 676 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 93,844 KB
最終ジャッジ日時 2024-06-26 17:49:58
合計ジャッジ時間 10,909 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,352 KB
testcase_01 AC 62 ms
77,312 KB
testcase_02 AC 39 ms
52,068 KB
testcase_03 AC 92 ms
79,232 KB
testcase_04 AC 90 ms
78,848 KB
testcase_05 AC 86 ms
79,232 KB
testcase_06 AC 92 ms
79,104 KB
testcase_07 AC 92 ms
79,208 KB
testcase_08 AC 90 ms
79,104 KB
testcase_09 AC 89 ms
79,300 KB
testcase_10 AC 93 ms
79,232 KB
testcase_11 AC 92 ms
79,128 KB
testcase_12 AC 89 ms
79,160 KB
testcase_13 AC 321 ms
92,488 KB
testcase_14 AC 339 ms
92,616 KB
testcase_15 AC 322 ms
92,308 KB
testcase_16 AC 341 ms
93,828 KB
testcase_17 AC 351 ms
93,844 KB
testcase_18 AC 85 ms
80,128 KB
testcase_19 AC 89 ms
80,256 KB
testcase_20 AC 356 ms
93,324 KB
testcase_21 AC 351 ms
93,580 KB
testcase_22 AC 350 ms
93,192 KB
testcase_23 AC 345 ms
93,192 KB
testcase_24 AC 255 ms
87,808 KB
testcase_25 AC 355 ms
93,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 区間和セグ木
def update(k, x):
    k += N0 - 1
    data[k] = x  # 加算にするなら+=に
    while k >= 0:
        k = (k - 1) // 2
        data[k] = data[2 * k + 1] + data[2 * k + 2]

def query(l, r):
    s = 0
    L = l + N0;
    R = r + N0
    while L < R:
        if R & 1:
            R -= 1
            s += data[R - 1]
        if L & 1:
            s += data[L - 1]
            L += 1
        L >>= 1;
        R >>= 1
    return s


N, Q = map(int, input().split())
IST = []
maxst = 0
for _ in range(Q):
    i, s, t = map(int, input().split())
    maxst = max(maxst, t)
    IST.append((i, s, t))

# N: 処理する区間の長さ
N0 = 2 ** (maxst + 1).bit_length()
data = [0.0] * (2 * N0)

A = [0] * (maxst + 1)
for i, s, t in IST:
    A[s] += 1
    A[t] -= 1

if A[0] > 0:
    update(0, 1 / A[0])
for i in range(1, maxst + 1):
    A[i] += A[i - 1]
    if A[i] > 0:
        update(i, 1 / A[i])

ans = [0] * N
for i, s, t in IST:
    ans[i - 1] += query(s, t)
for i in range(N):
    print(ans[i])
0