結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー neko_the_shadow
提出日時 2020-02-10 09:43:01
言語 Go
(1.23.4)
結果
AC  
実行時間 22 ms / 2,000 ms
コード長 1,862 bytes
コンパイル時間 11,580 ms
コンパイル使用メモリ 234,704 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-01 06:14:08
合計ジャッジ時間 13,449 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 58
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

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

func exec(stdin *Stdin, stdout *Stdout) {
	n := stdin.ReadInt()
	s := stdin.Read()
	a := []int{}
	for i := 0; i < n; i++ {
		a = append(a, stdin.ReadInt())
	}
	q := stdin.ReadInt()
	k := []int{}
	for i := 0; i < q; i++ {
		k = append(k, stdin.ReadInt())
	}

	// key = 倒せる数、エネルギー
	d := make([]int, n+1)
	for i := 1; i < n+1; i++ {
		d[i] = int(math.MaxInt32)
	}
	for i := 0; i < n; i++ {
		key := 0
		val := 0
		for j := i; j < n; j++ {
			if s[j] == 'E' {
				key++
			}
			val += a[j]
			d[key] = Min(d[key], val)
		}
	}

	for i := n - 1; i >= 0; i-- {
		key := 0
		val := 0
		for j := i; j >= 0; j-- {
			if s[j] == 'E' {
				key++
			}
			val += a[j]
			d[key] = Min(d[key], val)
		}
	}

	for i := 0; i < q; i++ {
		x := sort.Search(n+1, func(j int) bool {
			return d[j] > k[i]
		})
		stdout.Println(x - 1)
	}
}

func Min(a ...int) int {
	v := a[0]
	for i := 1; i < len(a); i++ {
		if a[i] < v {
			v = a[i]
		}
	}
	return v
}

func main() {
	stdout := NewStdout()
	defer stdout.Flush()
	exec(NewStdin(bufio.ScanWords), stdout)
}

type Stdin struct {
	stdin *bufio.Scanner
}

func NewStdin(split bufio.SplitFunc) *Stdin {
	s := Stdin{bufio.NewScanner(os.Stdin)}
	s.stdin.Split(split)
	s.stdin.Buffer(make([]byte, bufio.MaxScanTokenSize), int(math.MaxInt32))
	return &s
}

func (s *Stdin) Read() string {
	s.stdin.Scan()
	return s.stdin.Text()
}

func (s *Stdin) ReadInt() int {
	n, _ := strconv.Atoi(s.Read())
	return n
}

func (s *Stdin) ReadFloat64() float64 {
	n, _ := strconv.ParseFloat(s.Read(), 64)
	return n
}

type Stdout struct {
	stdout *bufio.Writer
}

func NewStdout() *Stdout {
	return &Stdout{bufio.NewWriter(os.Stdout)}
}

func (s *Stdout) Flush() {
	s.stdout.Flush()
}

func (s *Stdout) Println(a ...interface{}) {
	fmt.Fprintln(s.stdout, a...)
}
0