結果

問題 No.510 二次漸化式
ユーザー aru aruaru aru
提出日時 2020-12-26 23:04:45
言語 Go
(1.22.1)
結果
AC  
実行時間 1,932 ms / 3,000 ms
コード長 3,320 bytes
コンパイル時間 11,888 ms
コンパイル使用メモリ 225,456 KB
実行使用メモリ 7,716 KB
最終ジャッジ日時 2023-10-25 07:56:01
合計ジャッジ時間 36,672 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,348 KB
testcase_01 AC 2 ms
4,348 KB
testcase_02 AC 54 ms
4,348 KB
testcase_03 AC 54 ms
4,348 KB
testcase_04 AC 54 ms
4,348 KB
testcase_05 AC 55 ms
4,348 KB
testcase_06 AC 284 ms
4,348 KB
testcase_07 AC 282 ms
4,348 KB
testcase_08 AC 272 ms
4,348 KB
testcase_09 AC 273 ms
4,348 KB
testcase_10 AC 5 ms
4,348 KB
testcase_11 AC 6 ms
4,348 KB
testcase_12 AC 6 ms
4,348 KB
testcase_13 AC 6 ms
4,348 KB
testcase_14 AC 6 ms
4,348 KB
testcase_15 AC 6 ms
4,348 KB
testcase_16 AC 948 ms
5,408 KB
testcase_17 AC 935 ms
5,408 KB
testcase_18 AC 946 ms
5,408 KB
testcase_19 AC 904 ms
5,408 KB
testcase_20 AC 919 ms
5,408 KB
testcase_21 AC 915 ms
5,408 KB
testcase_22 AC 910 ms
5,408 KB
testcase_23 AC 1,932 ms
7,716 KB
testcase_24 AC 1,926 ms
7,716 KB
testcase_25 AC 1,894 ms
7,716 KB
testcase_26 AC 1,853 ms
7,716 KB
testcase_27 AC 1,879 ms
7,716 KB
testcase_28 AC 1,923 ms
7,716 KB
testcase_29 AC 1,869 ms
7,716 KB
testcase_30 AC 1,896 ms
7,716 KB
testcase_31 AC 12 ms
6,788 KB
testcase_32 AC 13 ms
6,788 KB
testcase_33 AC 13 ms
7,572 KB
testcase_34 AC 12 ms
6,004 KB
testcase_35 AC 11 ms
6,004 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
}

// min for n entry
func nmin(a ...int) int {
	ret := a[0]
	for _, e := range a {
		ret = min(ret, e)
	}
	return ret
}

// max for n entry
func nmax(a ...int) int {
	ret := a[0]
	for _, e := range a {
		ret = max(ret, e)
	}
	return ret
}

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 calc(a, b, x, y []int, n int) {
	a[0] = 1
	b[0] = 1
	for i := 0; i < n; i++ {
		b[i+1] = (b[i]*y[i]%mod + 1) % mod
	}
	for i := 0; i < n; i++ {
		v := b[i] * b[i] % mod * x[i] % mod
		a[i+1] = (v + a[i]) % mod
	}
}

func calcy(a, b, x, y []int, n int, s int) {
	for i := s; i < n; i++ {
		e := (b[i]*y[i]%mod + 1) % mod
		v := b[i] * b[i] % mod * x[i] % mod
		v = (v + a[i]) % mod
		if e == b[i+1] && v == a[i+1] {
			break
		}
		b[i+1] = e
		a[i+1] = v
	}
}

func calcx(a, b, x, y []int, n int, s int) {
	v := b[s] * b[s] % mod * x[s] % mod
	a[s+1] = (v + a[s]) % mod
	for i := s + 1; i < n; i++ {
		v := b[i] * b[i] % mod * x[i] % mod
		v = (v + a[i]) % mod
		if a[i+1] == v {
			break
		}
		a[i+1] = v
	}
}

const mod = int(1e9 + 7)

type op struct {
	s    string
	i, v int
}

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

	a := make([]int, n+1)
	b := make([]int, n+1)
	x := make([]int, n+1)
	y := make([]int, n+1)

	calc(a, b, x, y, n)

	Q := make([]op, q)
	cnt := 0
	for i := 0; i < q; i++ {
		s := getS()
		switch s {
		case "x":
			Q[i] = op{s, getI(), getI()}
		case "y":
			Q[i] = op{s, getI(), getI()}
		case "a":
			Q[i] = op{s, getI(), 0}
			cnt++
		}
	}

	if cnt < 100 {
		for k := 0; k < q; k++ {
			s := Q[k].s
			switch s {
			case "x":
				i, v := Q[k].i, Q[k].v
				x[i] = v
			case "y":
				i, v := Q[k].i, Q[k].v
				y[i] = v
			case "a":
				i := Q[k].i
				calc(a, b, x, y, n)
				out(a[i])
			}
		}
		return
	}

	for k := 0; k < q; k++ {
		s := Q[k].s
		switch s {
		case "x":
			i, v := Q[k].i, Q[k].v
			x[i] = v
			calcx(a, b, x, y, n, i)
			// out("x------")
			// out(a, x)
			// out(b, y)
		case "y":
			i, v := Q[k].i, Q[k].v
			y[i] = v
			calcy(a, b, x, y, n, i)
			// out("y------")
			// out(a, x)
			// out(b, y)
		case "a":
			i := Q[k].i
			out(a[i])
		}
	}
}
0