結果

問題 No.801 エレベーター
ユーザー tktk_snsntktk_snsn
提出日時 2020-12-09 21:52:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 915 ms / 2,000 ms
コード長 498 bytes
コンパイル時間 134 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,720 KB
最終ジャッジ日時 2024-09-19 04:32:47
合計ジャッジ時間 22,329 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 481 ms
44,244 KB
testcase_01 AC 484 ms
44,208 KB
testcase_02 AC 486 ms
44,284 KB
testcase_03 AC 480 ms
44,468 KB
testcase_04 AC 498 ms
44,588 KB
testcase_05 AC 496 ms
44,720 KB
testcase_06 AC 501 ms
44,340 KB
testcase_07 AC 488 ms
44,472 KB
testcase_08 AC 484 ms
44,456 KB
testcase_09 AC 496 ms
44,460 KB
testcase_10 AC 493 ms
44,588 KB
testcase_11 AC 481 ms
44,076 KB
testcase_12 AC 498 ms
44,720 KB
testcase_13 AC 906 ms
44,468 KB
testcase_14 AC 904 ms
44,212 KB
testcase_15 AC 915 ms
44,076 KB
testcase_16 AC 906 ms
44,592 KB
testcase_17 AC 910 ms
44,588 KB
testcase_18 AC 898 ms
44,220 KB
testcase_19 AC 911 ms
44,464 KB
testcase_20 AC 904 ms
44,604 KB
testcase_21 AC 897 ms
44,340 KB
testcase_22 AC 891 ms
44,204 KB
testcase_23 AC 900 ms
44,340 KB
testcase_24 AC 885 ms
44,468 KB
testcase_25 AC 896 ms
44,080 KB
testcase_26 AC 887 ms
44,332 KB
testcase_27 AC 905 ms
44,208 KB
testcase_28 AC 901 ms
44,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
import sys
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)
mod = 10**9+7

n, m, k = map(int, input().split())
L, R = np.array([input().split() for _ in range(m)], dtype=np.int64).T

dp = np.ones(n+2, dtype=np.int64)
dp[0] = 0

for _ in range(k):
    newDP = np.zeros_like(dp)
    cnt = dp[R] - dp[L - 1]
    np.add.at(newDP, L, cnt)
    np.add.at(newDP, R + 1, -cnt)
    dp = np.cumsum(newDP) % mod
    dp = np.cumsum(dp) % mod


print((dp[n] - dp[n - 1]) % mod)
0