結果

問題 No.1222 -101
ユーザー nehan_der_thalnehan_der_thal
提出日時 2020-09-06 22:46:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 473 ms / 2,000 ms
コード長 866 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 82,084 KB
最終ジャッジ日時 2024-05-06 21:35:28
合計ジャッジ時間 8,668 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,968 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 40 ms
52,224 KB
testcase_03 AC 46 ms
51,968 KB
testcase_04 AC 46 ms
51,968 KB
testcase_05 AC 45 ms
51,968 KB
testcase_06 AC 45 ms
51,968 KB
testcase_07 AC 43 ms
51,968 KB
testcase_08 AC 40 ms
52,480 KB
testcase_09 AC 40 ms
52,608 KB
testcase_10 AC 336 ms
80,612 KB
testcase_11 AC 292 ms
80,420 KB
testcase_12 AC 349 ms
81,108 KB
testcase_13 AC 348 ms
81,612 KB
testcase_14 AC 344 ms
81,280 KB
testcase_15 AC 340 ms
82,084 KB
testcase_16 AC 348 ms
81,024 KB
testcase_17 AC 343 ms
81,444 KB
testcase_18 AC 333 ms
81,576 KB
testcase_19 AC 336 ms
81,152 KB
testcase_20 AC 337 ms
81,280 KB
testcase_21 AC 340 ms
81,664 KB
testcase_22 AC 39 ms
51,712 KB
testcase_23 AC 40 ms
52,096 KB
testcase_24 AC 40 ms
51,968 KB
testcase_25 AC 39 ms
51,712 KB
testcase_26 AC 40 ms
51,840 KB
testcase_27 AC 40 ms
52,608 KB
testcase_28 AC 40 ms
51,840 KB
testcase_29 AC 40 ms
52,352 KB
testcase_30 AC 41 ms
51,840 KB
testcase_31 AC 40 ms
52,096 KB
testcase_32 AC 473 ms
81,024 KB
testcase_33 AC 469 ms
81,408 KB
testcase_34 AC 205 ms
80,696 KB
testcase_35 AC 206 ms
80,912 KB
testcase_36 AC 204 ms
81,152 KB
testcase_37 AC 205 ms
80,768 KB
testcase_38 AC 203 ms
80,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Bit:
    def __init__(self, n):
        self.size = n
        self.tree = [0] * (n + 1)

    def sum(self, i):
        s = 0
        while i > 0:
            s += self.tree[i]
            i -= i & -i
        return s

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

N, M = map(int, input().split())
mod = 10**9+7
A = [0] * (N+1)
r2l = [0] * (N+1)
c = 0
for _ in range(M):
    l, r, p = map(int, input().split())
    if p:
        A[l-1] += 1
        A[r] -= 1
        c += 1
    else:
        r2l[r] = l

bt = Bit(N+1)
bt.add(1, pow(2, N, mod))
mxl = 0
m2=500000004
for i in range(1, N+1):
    A[i] += A[i-1]
    if A[i-1] == 0:
        bt.add(i+1, pow(2, N-i, mod)*pow(m2, N-i+1, mod)*(bt.sum(i) - bt.sum(mxl))%mod)
    mxl = max(mxl, r2l[i])
print((bt.sum(N+1)-bt.sum(mxl))*pow(m2, c, mod)%mod)

0