結果

問題 No.1011 Infinite Stairs
ユーザー vwxyzvwxyz
提出日時 2022-10-26 12:36:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,400 ms / 2,000 ms
コード長 2,402 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 262,108 KB
最終ジャッジ日時 2024-07-04 03:02:38
合計ジャッジ時間 14,380 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
89,600 KB
testcase_01 AC 139 ms
89,344 KB
testcase_02 AC 187 ms
90,112 KB
testcase_03 AC 1,004 ms
261,640 KB
testcase_04 AC 1,400 ms
260,500 KB
testcase_05 AC 1,398 ms
260,788 KB
testcase_06 AC 140 ms
89,560 KB
testcase_07 AC 314 ms
138,240 KB
testcase_08 AC 136 ms
89,556 KB
testcase_09 AC 146 ms
89,984 KB
testcase_10 AC 186 ms
90,752 KB
testcase_11 AC 682 ms
261,236 KB
testcase_12 AC 164 ms
90,196 KB
testcase_13 AC 445 ms
180,348 KB
testcase_14 AC 174 ms
90,520 KB
testcase_15 AC 330 ms
148,096 KB
testcase_16 AC 1,033 ms
262,108 KB
testcase_17 AC 1,111 ms
261,688 KB
testcase_18 AC 527 ms
213,476 KB
testcase_19 AC 157 ms
90,184 KB
testcase_20 AC 172 ms
90,388 KB
testcase_21 AC 361 ms
155,648 KB
testcase_22 AC 949 ms
261,852 KB
testcase_23 AC 354 ms
152,520 KB
testcase_24 AC 335 ms
149,620 KB
testcase_25 AC 523 ms
211,948 KB
testcase_26 AC 239 ms
119,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
import copy
import decimal
import fractions
import heapq
import itertools
import math
import random
import sys
import time
from collections import Counter,deque,defaultdict
from functools import lru_cache,reduce
from heapq import heappush,heappop,heapify,heappushpop,_heappop_max,_heapify_max
def _heappush_max(heap,item):
    heap.append(item)
    heapq._siftdown_max(heap, 0, len(heap)-1)
def _heappushpop_max(heap, item):
    if heap and item < heap[0]:
        item, heap[0] = heap[0], item
        heapq._siftup_max(heap, 0)
    return item
from math import gcd as GCD
read=sys.stdin.read
readline=sys.stdin.readline
readlines=sys.stdin.readlines
write=sys.stdout.write
class Cumsum:
    def __init__(self,lst,mod=0):
        self.N=len(lst)
        self.mod=mod
        self.cumsum=[0]*(self.N+1)
        self.cumsum[0]=0
        for i in range(1,self.N+1):
            self.cumsum[i]=self.cumsum[i-1]+lst[i-1]
            if self.mod:
                self.cumsum[i]%=self.mod

    def __getitem__(self,i):
        if type(i)==int:
            if 0<=i<self.N:
                a,b=i,i+1
            elif -self.N<=i<0:
                a,b=i+self.N,i+self.N+1
            else:
                raise IndexError('list index out of range')
        else:
            a,b=i.start,i.stop
            if a==None or a<-self.N:
                a=0
            elif self.N<=a:
                a=self.N
            elif a<0:
                a+=self.N
            if b==None or self.N<=b:
                b=self.N
            elif b<-self.N:
                b=0
            elif b<0:
                b+=self.N
        s=self.cumsum[b]-self.cumsum[a]
        if self.mod:
            s%=self.mod
        return s

    def __setitem__(self,i,x):
        if -self.N<=i<0:
            i+=self.N
        elif not 0<=i<self.N:
            raise IndexError('list index out of range')
        self.cumsum[i+1]=self.cumsum[i]+x
        if self.mod:
            self.cumsum[i+1]%=self.mod

    def __str__(self):
        lst=[self.cumsum[i+1]-self.cumsum[i] for i in range(self.N)]
        if self.mod:
            for i in range(self.N):
                lst[i]%=self.mod
        return "["+", ".join(map(str,lst))+"]"

N,D,K=map(int,readline().split())
dp=[0]*(N*D+1)
dp[0]=1
mod=10**9+7
for n in range(N):
    prev=Cumsum(dp,mod=mod)
    dp=[prev[max(0,i-D):i] for i in range(N*D+1)]
ans=dp[K]
print(ans)
0