結果

問題 No.949 飲酒プログラミングコンテスト
ユーザー ccppjsrbccppjsrb
提出日時 2020-06-04 11:22:55
言語 Go
(1.22.1)
結果
AC  
実行時間 578 ms / 2,500 ms
コード長 2,702 bytes
コンパイル時間 13,515 ms
コンパイル使用メモリ 232,036 KB
実行使用メモリ 143,232 KB
最終ジャッジ日時 2024-05-06 04:43:34
合計ジャッジ時間 21,700 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 6 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 4 ms
5,376 KB
testcase_11 AC 307 ms
101,888 KB
testcase_12 AC 381 ms
103,680 KB
testcase_13 AC 286 ms
91,392 KB
testcase_14 AC 41 ms
20,480 KB
testcase_15 AC 242 ms
70,784 KB
testcase_16 AC 474 ms
130,048 KB
testcase_17 AC 63 ms
26,240 KB
testcase_18 AC 532 ms
136,576 KB
testcase_19 AC 316 ms
102,784 KB
testcase_20 AC 65 ms
33,024 KB
testcase_21 AC 22 ms
15,104 KB
testcase_22 AC 45 ms
29,184 KB
testcase_23 AC 6 ms
5,632 KB
testcase_24 AC 273 ms
75,648 KB
testcase_25 AC 483 ms
143,232 KB
testcase_26 AC 519 ms
143,232 KB
testcase_27 AC 526 ms
143,232 KB
testcase_28 AC 578 ms
143,232 KB
testcase_29 AC 418 ms
143,232 KB
testcase_30 AC 353 ms
143,232 KB
testcase_31 AC 297 ms
143,232 KB
testcase_32 AC 490 ms
143,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

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

func getScanner(fp *os.File) *bufio.Scanner {
	scanner := bufio.NewScanner(fp)
	scanner.Split(bufio.ScanWords)
	scanner.Buffer(make([]byte, 1000005), 1000005)
	return scanner
}
func getNextString(scanner *bufio.Scanner) string {
	scanner.Scan()
	return scanner.Text()
}
func getNextInt(scanner *bufio.Scanner) int {
	i, _ := strconv.Atoi(getNextString(scanner))
	return i
}
func getNextInt64(scanner *bufio.Scanner) int64 {
	i, _ := strconv.ParseInt(getNextString(scanner), 10, 64)
	return i
}
func getNextUint64(scanner *bufio.Scanner) uint64 {
	i, _ := strconv.ParseUint(getNextString(scanner), 10, 64)
	return i
}
func getNextFloat64(scanner *bufio.Scanner) float64 {
	i, _ := strconv.ParseFloat(getNextString(scanner), 64)
	return i
}
func main() {
	fp := os.Stdin
	wfp := os.Stdout
	cnt := 0
	if os.Getenv("MASPY") == "ますピ" {
		fp, _ = os.Open(os.Getenv("BEET_THE_HARMONY_OF_PERFECT"))
		cnt = 4
	}
	if os.Getenv("MASPYPY") == "ますピッピ" {
		wfp, _ = os.Create(os.Getenv("NGTKANA_IS_GENIUS10"))
	}
	scanner := getScanner(fp)
	writer := bufio.NewWriter(wfp)
	solve(scanner, writer)
	for i := 0; i < cnt; i++ {
		fmt.Fprintln(writer, "-----------------------------------")
		solve(scanner, writer)
	}
	writer.Flush()
}
func solve(scanner *bufio.Scanner, writer *bufio.Writer) {
	n := getNextInt(scanner)
	aa := make([]int, n+1)
	bb := make([]int, n+1)
	dd := make([]int, n)
	for i := 0; i < n+1; i++ {
		aa[i] = getNextInt(scanner)
	}
	for i := 0; i < n+1; i++ {
		bb[i] = getNextInt(scanner)
	}
	for i := 0; i < n; i++ {
		dd[i] = getNextInt(scanner)
	}
	sort.Ints(dd)
	l := 0
	r := n + 1
	for 1 < r-l {
		m := l + (r-l)>>1
		if ok(n, m, dd[:m], aa, bb) {
			l = m
			continue
		}
		r = m
	}
	fmt.Fprintln(writer, l)
}

type cint int

func (x *cint) min(y cint) *cint {
	if *x > y {
		*x = y
	}
	return x
}
func (x *cint) max(y cint) *cint {
	if *x < y {
		*x = y
	}
	return x
}
func makeGrid(h, w int) [][]int {
	index := make([][]int, h, h)
	data := make([]int, h*w, h*w)
	for i := 0; i < h; i++ {
		index[i] = data[i*w : (i+1)*w]
	}
	return index
}
func ok(n, m int, dd, aa, bb []int) bool {
	dp := makeGrid(n+1, n+1)
	for i := 0; i < n+1; i++ {
		for j := 0; j < n+1; j++ {
			dp[i][j] = -math.MaxInt32
		}
	}
	dp[0][0] = aa[0] + bb[0]
	for i := 0; i < m; i++ {
		for j := 0; j <= i; j++ {
			if dp[i][j] == -math.MaxInt32 {
				continue
			}
			if aa[j]+bb[i+1-j] >= dd[m-1-i] {
				dp[i+1][j] = aa[j] + bb[i+1-j]
			}
			if aa[j+1]+bb[i-j] >= dd[m-1-i] {
				dp[i+1][j+1] = aa[j+1] + bb[i-j]
			}
		}
	}
	for i := 0; i <= m; i++ {
		if dp[m][i] != -math.MaxInt32 {
			return true
		}
	}

	return false
}
0