結果

問題 No.789 範囲の合計
ユーザー amyuamyu
提出日時 2019-07-04 20:06:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 762 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 33,796 KB
最終ジャッジ日時 2024-09-19 06:45:30
合計ジャッジ時間 11,690 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
14,892 KB
testcase_01 AC 38 ms
14,848 KB
testcase_02 TLE -
testcase_03 AC 839 ms
24,500 KB
testcase_04 TLE -
testcase_05 AC 929 ms
32,360 KB
testcase_06 AC 944 ms
32,992 KB
testcase_07 AC 806 ms
24,800 KB
testcase_08 AC 895 ms
31,404 KB
testcase_09 AC 865 ms
30,948 KB
testcase_10 TLE -
testcase_11 AC 907 ms
32,468 KB
testcase_12 AC 919 ms
32,588 KB
testcase_13 AC 37 ms
15,008 KB
testcase_14 AC 37 ms
14,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left
n=int(input())
l=[]
X=[]
for i in range(n):
    a,x,y=map(int,input().split())
    l.append((a,x,y))
    if a:
        X.append(x)
        X.append(y)
    else:
        X.append(x)
X.sort()
No=2**18
tree=[0]*(2*No)
def add(k,x):
    k+=No-1
    while k>=0:
        tree[k]+=x
        k=(k-1)//2
def qsum(l,r):
    L=l+No-1
    R=r+No-1
    s=0
    while L<=R:
        if R&1:
            s+=tree[R]
            R-=2
        else:
            R-=1
        if L&1:
            L-=1
        else:
            s+=tree[L]
        L>>=1;R>>=1
    return s
ans=0
for i in l:
    a,x,y=i
    if a:
        x=bisect_left(X,x)
        y=bisect_left(X,y)
        ans+=qsum(x,y)
    else:
        x=bisect_left(X,x)
        add(x,y)
print(ans)
0