結果
問題 | No.1222 -101 |
ユーザー | nehan_der_thal |
提出日時 | 2020-09-06 22:38:43 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,230 bytes |
コンパイル時間 | 223 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 83,968 KB |
最終ジャッジ日時 | 2024-05-06 21:33:35 |
合計ジャッジ時間 | 8,230 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
52,096 KB |
testcase_01 | AC | 35 ms
51,840 KB |
testcase_02 | AC | 36 ms
52,096 KB |
testcase_03 | AC | 40 ms
52,096 KB |
testcase_04 | AC | 35 ms
51,968 KB |
testcase_05 | AC | 35 ms
51,968 KB |
testcase_06 | AC | 35 ms
51,840 KB |
testcase_07 | AC | 34 ms
52,224 KB |
testcase_08 | AC | 35 ms
52,224 KB |
testcase_09 | AC | 37 ms
52,096 KB |
testcase_10 | WA | - |
testcase_11 | AC | 267 ms
82,560 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 39 ms
52,096 KB |
testcase_23 | AC | 38 ms
52,352 KB |
testcase_24 | AC | 36 ms
51,840 KB |
testcase_25 | AC | 36 ms
52,352 KB |
testcase_26 | WA | - |
testcase_27 | AC | 37 ms
51,968 KB |
testcase_28 | AC | 36 ms
52,096 KB |
testcase_29 | WA | - |
testcase_30 | AC | 35 ms
51,840 KB |
testcase_31 | AC | 35 ms
51,968 KB |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | AC | 183 ms
82,304 KB |
testcase_35 | AC | 195 ms
82,304 KB |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
ソースコード
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 #print(A) for i in range(1, N+1): A[i] += A[i-1] #print(A) B = [0] * (N+2) B[1] = 1 bt = Bit(N+1) bt.add(1, pow(2, N, mod)) mxl = 0 m2=500000004 for i in range(1, N+1): if A[i-1] == 0: # print(mxl-1, N-i, bt.sum(i) - bt.sum(mxl-1)) B[i+1] = pow(2, N-i, mod)*pow(m2, N-i+1, mod)*(bt.sum(i) - bt.sum(mxl-1))%mod # print(pow(2, N-i, mod)*pow(m2, N-i+1, mod)) # B[i+1] = m2*(bt.sum(i) - bt.sum(mxl-1))%mod # print(B[i+1]%mod) bt.add(i+1, B[i+1]) mxl = max(mxl, r2l[i]) #print(B) #print(bt.sum(N+1), mxl) #print((bt.sum(N+1)-bt.sum(1))) #print(mxl) print((bt.sum(N+1)-bt.sum(mxl))*pow(m2, c, mod)%mod)