結果

問題 No.801 エレベーター
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-06-29 15:11:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,131 ms / 2,000 ms
コード長 1,067 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 81,752 KB
実行使用メモリ 82,304 KB
最終ジャッジ日時 2024-06-25 17:56:40
合計ジャッジ時間 19,097 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 37 ms
52,352 KB
testcase_02 AC 38 ms
52,736 KB
testcase_03 AC 69 ms
72,960 KB
testcase_04 AC 65 ms
72,800 KB
testcase_05 AC 66 ms
72,832 KB
testcase_06 AC 68 ms
72,728 KB
testcase_07 AC 67 ms
72,832 KB
testcase_08 AC 69 ms
73,216 KB
testcase_09 AC 69 ms
72,832 KB
testcase_10 AC 68 ms
72,960 KB
testcase_11 AC 68 ms
72,960 KB
testcase_12 AC 68 ms
72,960 KB
testcase_13 AC 1,056 ms
81,920 KB
testcase_14 AC 1,048 ms
82,124 KB
testcase_15 AC 1,056 ms
82,176 KB
testcase_16 AC 1,026 ms
82,260 KB
testcase_17 AC 1,131 ms
81,820 KB
testcase_18 AC 1,043 ms
82,176 KB
testcase_19 AC 1,065 ms
82,304 KB
testcase_20 AC 1,038 ms
81,900 KB
testcase_21 AC 1,031 ms
81,824 KB
testcase_22 AC 1,042 ms
81,920 KB
testcase_23 AC 1,048 ms
82,176 KB
testcase_24 AC 1,057 ms
82,076 KB
testcase_25 AC 1,034 ms
81,976 KB
testcase_26 AC 1,031 ms
81,920 KB
testcase_27 AC 1,023 ms
81,840 KB
testcase_28 AC 1,003 ms
82,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline
def main2(n,m,k,lr):
  mod=10**9+7
  dp=[0]*(n+1)
  dp[1]=1
  now=0
  cnt_ary=[0]*(n+1)
  for l,r in lr:
    cnt_ary[l]+=1
    if r!=n:cnt_ary[r+1]-=1
  for i in range(n):cnt_ary[i+1]+=cnt_ary[i]
  for _ in range(k):
    ndp=[0]*(n+1)
    sdp=[0]
    for x in dp:sdp.append((sdp[-1]+x)%mod)
    mat0=[0]*(n+1)
    mat1=[0]*(n+1)
    for l,r in lr:
      mat0[r]+=sdp[r+1]-sdp[l]
      mat1[l]+=sdp[r+1]-sdp[l]

    # 下からの遷移。同じ階の移動も含む
    for j in range(1,n+1):
      # j階への遷移
      now+=cnt_ary[j]*dp[j]
      now%=mod
      ndp[j]+=now
      ndp[j]%=mod
      now-=mat0[j]
      now%=mod
    # 上からの遷移。同じ階の移動は含まない
    for j in reversed(range(1,n+1)):
      # j階への遷移
      ndp[j]+=now
      ndp[j]%=mod
      now+=cnt_ary[j]*dp[j]
      now-=mat1[j]
      now%=mod
    dp=ndp
  return dp[n]

if __name__=='__main__':
  n,m,k=map(int,input().split())
  lr=[list(map(int,input().split())) for _ in range(m)]
  ret2=main2(n,m,k,lr)
  print(ret2)
0