結果

問題 No.1222 -101
ユーザー anagohirameanagohirame
提出日時 2020-07-18 02:15:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 795 ms / 2,000 ms
コード長 947 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 43,520 KB
最終ジャッジ日時 2024-10-15 06:40:46
合計ジャッジ時間 14,946 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 28 ms
10,624 KB
testcase_04 AC 28 ms
10,624 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 26 ms
10,624 KB
testcase_07 AC 27 ms
10,624 KB
testcase_08 AC 27 ms
10,752 KB
testcase_09 AC 28 ms
10,752 KB
testcase_10 AC 437 ms
37,376 KB
testcase_11 AC 413 ms
37,376 KB
testcase_12 AC 770 ms
40,448 KB
testcase_13 AC 746 ms
40,320 KB
testcase_14 AC 735 ms
40,576 KB
testcase_15 AC 574 ms
39,040 KB
testcase_16 AC 664 ms
39,552 KB
testcase_17 AC 716 ms
40,064 KB
testcase_18 AC 582 ms
38,912 KB
testcase_19 AC 619 ms
38,912 KB
testcase_20 AC 669 ms
39,808 KB
testcase_21 AC 677 ms
39,424 KB
testcase_22 AC 27 ms
10,624 KB
testcase_23 AC 27 ms
10,624 KB
testcase_24 AC 27 ms
10,624 KB
testcase_25 AC 26 ms
10,496 KB
testcase_26 AC 28 ms
10,752 KB
testcase_27 AC 27 ms
10,624 KB
testcase_28 AC 28 ms
10,624 KB
testcase_29 AC 31 ms
10,880 KB
testcase_30 AC 31 ms
10,624 KB
testcase_31 AC 31 ms
10,752 KB
testcase_32 AC 795 ms
43,520 KB
testcase_33 AC 766 ms
43,520 KB
testcase_34 AC 709 ms
37,632 KB
testcase_35 AC 702 ms
37,376 KB
testcase_36 AC 701 ms
37,248 KB
testcase_37 AC 698 ms
37,248 KB
testcase_38 AC 693 ms
37,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
def input():
	return sys.stdin.buffer.readline()[:-1]

MOD = 10**9+7
n, m = map(int, input().split())
two_pow = [1 for _ in range(n+2)]
for i in range(1, n+2):
	two_pow[i] = (two_pow[i-1] * 2) % MOD

zero_seg = [0 for _ in range(n+1)]
nonzero_num = 0
nonzero_imos = [0 for _ in range(n+2)]
for _ in range(m):
	l, r, p = map(int, input().split())
	if p == 0:
		zero_seg[r] = l
	else:
		nonzero_num += 1
		nonzero_imos[l] += 1
		nonzero_imos[r+1] -= 1

for i in range(2, n+2):
	nonzero_imos[i] += nonzero_imos[i-1]

dp = [0 for _ in range(n+1)]
cum = [0 for _ in range(n+2)]
dp[0] = 1
cum[0] = 1
max_left = 0

for i in range(1, n+1):
	if nonzero_imos[i] == 0:
		dp[i] = (cum[i-1] - two_pow[i-max_left] * cum[max_left-1]) % MOD
	cum[i] = (2*cum[i-1] + dp[i]) % MOD
	max_left = max(max_left, zero_seg[i])

pre_ans = (cum[n] - two_pow[n-max_left+1] * cum[max_left-1]) % MOD
ans = (pre_ans * pow(500000004, nonzero_num, MOD)) % MOD
print(ans)
0