結果

問題 No.1011 Infinite Stairs
ユーザー aru aruaru aru
提出日時 2020-10-31 22:08:07
言語 Go
(1.22.1)
結果
AC  
実行時間 959 ms / 2,000 ms
コード長 2,671 bytes
コンパイル時間 12,270 ms
コンパイル使用メモリ 243,888 KB
実行使用メモリ 215,852 KB
最終ジャッジ日時 2024-07-17 12:14:39
合計ジャッジ時間 16,255 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,812 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 21 ms
11,592 KB
testcase_03 AC 679 ms
187,292 KB
testcase_04 AC 133 ms
50,232 KB
testcase_05 AC 959 ms
215,852 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 12 ms
9,872 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 3 ms
6,944 KB
testcase_10 AC 9 ms
8,936 KB
testcase_11 AC 158 ms
57,688 KB
testcase_12 AC 7 ms
8,668 KB
testcase_13 AC 97 ms
36,860 KB
testcase_14 AC 4 ms
6,940 KB
testcase_15 AC 126 ms
46,300 KB
testcase_16 AC 495 ms
152,096 KB
testcase_17 AC 49 ms
20,732 KB
testcase_18 AC 293 ms
95,924 KB
testcase_19 AC 7 ms
6,940 KB
testcase_20 AC 4 ms
6,940 KB
testcase_21 AC 124 ms
45,552 KB
testcase_22 AC 247 ms
83,404 KB
testcase_23 AC 145 ms
47,928 KB
testcase_24 AC 159 ms
56,612 KB
testcase_25 AC 260 ms
87,092 KB
testcase_26 AC 56 ms
22,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"bufio"
	"fmt"
	"os"
	"sort"
	"strconv"
)

var sc = bufio.NewScanner(os.Stdin)
var wr = bufio.NewWriter(os.Stdout)

func out(x ...interface{}) {
	fmt.Fprintln(wr, x...)
}

func getI() int {
	sc.Scan()
	i, e := strconv.Atoi(sc.Text())
	if e != nil {
		panic(e)
	}
	return i
}

func getF() float64 {
	sc.Scan()
	i, e := strconv.ParseFloat(sc.Text(), 64)
	if e != nil {
		panic(e)
	}
	return i
}

func getInts(N int) []int {
	ret := make([]int, N)
	for i := 0; i < N; i++ {
		ret[i] = getI()
	}
	return ret
}

func getS() string {
	sc.Scan()
	return sc.Text()
}

// min, max, asub, absなど基本関数
func max(a, b int) int {
	if a > b {
		return a
	}
	return b
}

func min(a, b int) int {
	if a < b {
		return a
	}
	return b
}

func asub(a, b int) int {
	if a > b {
		return a - b
	}
	return b - a
}

func abs(a int) int {
	if a >= 0 {
		return a
	}
	return -a
}

func lowerBound(a []int, x int) int {
	idx := sort.Search(len(a), func(i int) bool {
		return a[i] >= x
	})
	return idx
}

func upperBound(a []int, x int) int {
	idx := sort.Search(len(a), func(i int) bool {
		return a[i] > x
	})
	return idx
}

func main() {
	defer wr.Flush()
	sc.Split(bufio.ScanWords)
	sc.Buffer([]byte{}, 1000000)
	// this template is new version.
	// use getI(), getS(), getInts(), getF()
	N, d, K := getI(), getI(), getI()

	var dp [301][91000]int

	dp[0][0] = 1
	m := newModint(int(1e9 + 7))
	for i := 1; i <= N; i++ {
		for j := 1; j <= K; j++ {
			dp[i][j] = m.add(dp[i][j-1], dp[i-1][j-1])
			if j > d {
				dp[i][j] = m.sub(dp[i][j], dp[i-1][j-d-1])
			}
		}
	}
	out(dp[N][K])
}

//----------------------------------------
// modint
//----------------------------------------
type modint struct {
	mod int
}

func newModint(m int) *modint {
	var ret modint
	ret.mod = m
	return &ret
}

func (m *modint) add(a, b int) int {
	ret := (a + b) % m.mod
	if ret < 0 {
		ret += m.mod
	}
	return ret
}

func (m *modint) sub(a, b int) int {
	ret := (a - b) % m.mod
	if ret < 0 {
		ret += m.mod
	}
	return ret
}

func (m *modint) mul(a, b int) int {
	ret := a * b % m.mod
	if ret < 0 {
		ret += m.mod
	}
	return ret
}

func (m *modint) div(a, b int) int {
	ret := a * m.modinv(b)
	ret %= m.mod
	return ret
}

func (m *modint) pow(p, n int) int {
	ret := 1
	x := p
	for n != 0 {
		if n%2 == 1 {
			ret *= x
			ret %= m.mod
		}
		n /= 2
		x = x * x % m.mod
	}
	return ret
}

// 逆元を使った割り算(MOD)
// mod. m での a の逆元 a^{-1} を計算する
func (m *modint) modinv(a int) int {
	b := m.mod
	u := 1
	v := 0
	for b != 0 {
		t := a / b
		a -= t * b
		a, b = b, a
		u -= t * v
		u, v = v, u
	}
	u %= m.mod
	if u < 0 {
		u += m.mod
	}
	return u
}
0