結果

問題 No.801 エレベーター
ユーザー qibqib
提出日時 2023-01-04 14:19:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 397 ms / 2,000 ms
コード長 532 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 77,516 KB
最終ジャッジ日時 2024-05-05 17:33:24
合計ジャッジ時間 8,665 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,328 KB
testcase_01 AC 42 ms
51,712 KB
testcase_02 AC 42 ms
51,968 KB
testcase_03 AC 71 ms
66,688 KB
testcase_04 AC 73 ms
66,560 KB
testcase_05 AC 76 ms
66,432 KB
testcase_06 AC 72 ms
66,688 KB
testcase_07 AC 73 ms
66,944 KB
testcase_08 AC 73 ms
66,688 KB
testcase_09 AC 71 ms
66,688 KB
testcase_10 AC 72 ms
66,944 KB
testcase_11 AC 71 ms
67,072 KB
testcase_12 AC 74 ms
68,096 KB
testcase_13 AC 392 ms
77,516 KB
testcase_14 AC 395 ms
76,868 KB
testcase_15 AC 392 ms
76,864 KB
testcase_16 AC 388 ms
77,260 KB
testcase_17 AC 382 ms
77,256 KB
testcase_18 AC 382 ms
76,876 KB
testcase_19 AC 383 ms
77,000 KB
testcase_20 AC 383 ms
77,008 KB
testcase_21 AC 397 ms
76,876 KB
testcase_22 AC 393 ms
77,136 KB
testcase_23 AC 388 ms
77,508 KB
testcase_24 AC 385 ms
76,748 KB
testcase_25 AC 385 ms
76,880 KB
testcase_26 AC 385 ms
76,868 KB
testcase_27 AC 383 ms
76,880 KB
testcase_28 AC 351 ms
77,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7

n, m, k = map(int, input().split())

elevators = [list(map(int, input().split())) for _ in range(m)]

dp = [0 for _ in range(n + 2)]
dp[1] = 1
for _ in range(k):
  s = [0 for _ in range(n + 2)]
  for i in range(1, n + 2):
    s[i] = (s[i - 1] + dp[i]) % MOD

  ndp = [0 for _ in range(n + 2)]
  for l, r in elevators:
    ndp[l] = (ndp[l] + s[r] - s[l - 1]) % MOD
    ndp[r + 1] = (ndp[r + 1] - s[r] + s[l - 1]) % MOD

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

  dp = ndp

print(dp[n])
0