結果

問題 No.1222 -101
ユーザー nehan_der_thalnehan_der_thal
提出日時 2020-09-06 22:56:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 263 ms / 2,000 ms
コード長 1,067 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 81,488 KB
最終ジャッジ日時 2024-05-06 21:36:14
合計ジャッジ時間 6,363 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 40 ms
52,096 KB
testcase_02 AC 40 ms
52,736 KB
testcase_03 AC 40 ms
52,480 KB
testcase_04 AC 38 ms
52,096 KB
testcase_05 AC 35 ms
51,712 KB
testcase_06 AC 36 ms
51,840 KB
testcase_07 AC 39 ms
51,712 KB
testcase_08 AC 36 ms
51,840 KB
testcase_09 AC 36 ms
52,096 KB
testcase_10 AC 126 ms
80,384 KB
testcase_11 AC 113 ms
80,256 KB
testcase_12 AC 220 ms
81,444 KB
testcase_13 AC 229 ms
81,488 KB
testcase_14 AC 234 ms
81,408 KB
testcase_15 AC 202 ms
81,092 KB
testcase_16 AC 209 ms
81,196 KB
testcase_17 AC 227 ms
81,280 KB
testcase_18 AC 209 ms
81,280 KB
testcase_19 AC 205 ms
81,280 KB
testcase_20 AC 215 ms
81,084 KB
testcase_21 AC 207 ms
81,216 KB
testcase_22 AC 39 ms
52,736 KB
testcase_23 AC 44 ms
52,096 KB
testcase_24 AC 35 ms
52,224 KB
testcase_25 AC 36 ms
52,224 KB
testcase_26 AC 36 ms
52,096 KB
testcase_27 AC 38 ms
52,224 KB
testcase_28 AC 36 ms
52,608 KB
testcase_29 AC 36 ms
52,096 KB
testcase_30 AC 42 ms
52,096 KB
testcase_31 AC 40 ms
52,480 KB
testcase_32 AC 263 ms
81,064 KB
testcase_33 AC 261 ms
81,152 KB
testcase_34 AC 180 ms
81,024 KB
testcase_35 AC 179 ms
80,576 KB
testcase_36 AC 181 ms
80,764 KB
testcase_37 AC 177 ms
81,024 KB
testcase_38 AC 187 ms
80,512 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
H = [0] * (N+1)
r2l = [0] * (N+1)
c = 0
for _ in range(M):
    l, r, p = map(int, input().split())
    if p:
        H[l-1] += 1
        H[r] -= 1
        c += 1
    else:
        r2l[r] = l
bt = Bit(N+1)
bt.add(1, pow(2, N, mod))
#bt[2..N+1]を1..Nに割り当て
#bt[i] = (A[i-1] が最後の0となるようなr<i-1となる全ての条件を満たすAの場合の数) * pow(2, N-i+1)
#後ろのpowはi以降が1or-1になる分の計算
#Hはimos法(解説通り)
mxl = 0
m2=500000004
for i in range(1, N+1):
    H[i] += H[i-1]
    if H[i-1] == 0:
        bt.add(i+1, m2*(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