結果

問題 No.973 余興
ユーザー shibh308shibh308
提出日時 2019-12-06 01:39:18
言語 Go
(1.22.1)
結果
AC  
実行時間 746 ms / 4,000 ms
コード長 1,602 bytes
コンパイル時間 16,546 ms
コンパイル使用メモリ 219,720 KB
実行使用メモリ 260,208 KB
最終ジャッジ日時 2024-05-10 01:46:21
合計ジャッジ時間 41,339 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 668 ms
260,204 KB
testcase_01 AC 634 ms
260,204 KB
testcase_02 AC 632 ms
259,820 KB
testcase_03 AC 632 ms
259,824 KB
testcase_04 AC 635 ms
260,204 KB
testcase_05 AC 643 ms
260,204 KB
testcase_06 AC 633 ms
259,948 KB
testcase_07 AC 656 ms
259,816 KB
testcase_08 AC 621 ms
259,176 KB
testcase_09 AC 636 ms
260,200 KB
testcase_10 AC 653 ms
252,528 KB
testcase_11 AC 212 ms
130,416 KB
testcase_12 AC 224 ms
130,540 KB
testcase_13 AC 225 ms
129,772 KB
testcase_14 AC 234 ms
129,900 KB
testcase_15 AC 25 ms
62,184 KB
testcase_16 AC 27 ms
62,444 KB
testcase_17 AC 18 ms
58,608 KB
testcase_18 AC 22 ms
60,396 KB
testcase_19 AC 22 ms
60,400 KB
testcase_20 AC 19 ms
58,360 KB
testcase_21 AC 25 ms
62,188 KB
testcase_22 AC 25 ms
62,188 KB
testcase_23 AC 22 ms
60,396 KB
testcase_24 AC 22 ms
60,396 KB
testcase_25 AC 15 ms
53,096 KB
testcase_26 AC 19 ms
58,352 KB
testcase_27 AC 29 ms
63,724 KB
testcase_28 AC 22 ms
60,392 KB
testcase_29 AC 22 ms
60,268 KB
testcase_30 AC 709 ms
260,076 KB
testcase_31 AC 700 ms
260,204 KB
testcase_32 AC 703 ms
260,204 KB
testcase_33 AC 690 ms
259,820 KB
testcase_34 AC 702 ms
259,180 KB
testcase_35 AC 714 ms
260,208 KB
testcase_36 AC 707 ms
255,088 KB
testcase_37 AC 684 ms
255,084 KB
testcase_38 AC 725 ms
259,568 KB
testcase_39 AC 746 ms
259,692 KB
testcase_40 AC 3 ms
6,944 KB
testcase_41 AC 3 ms
6,944 KB
testcase_42 AC 2 ms
6,944 KB
testcase_43 AC 3 ms
6,940 KB
testcase_44 AC 2 ms
6,944 KB
testcase_45 AC 4 ms
14,188 KB
testcase_46 AC 729 ms
260,204 KB
testcase_47 AC 720 ms
259,820 KB
testcase_48 AC 701 ms
260,076 KB
testcase_49 AC 633 ms
244,972 KB
testcase_50 AC 714 ms
258,540 KB
testcase_51 AC 706 ms
260,200 KB
testcase_52 AC 701 ms
260,208 KB
testcase_53 AC 689 ms
256,876 KB
testcase_54 AC 715 ms
260,200 KB
testcase_55 AC 699 ms
259,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

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

var sc = bufio.NewScanner(os.Stdin)

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

func main() {
	n_x := strings.Split(readLine(), " ")
	n, _ := strconv.ParseInt(n_x[0], 10, 0)
	x, _ := strconv.ParseInt(n_x[1], 10, 0)

	arr := strings.Split(readLine(), " ")
	a := [5000]int64{}
	for i, elm := range arr {
		val, _ := strconv.ParseInt(elm, 10, 0)
		a[i] = val
	}
	left := [5000]int64{}
	right := [5000]int64{}
	l := int64(0)
	r := int64(0)
	sum := int64(0)

	for l != n {
		for r != n && sum+a[r] <= x {
			sum += a[r]
			r++
		}
		left[l] = r - l
		sum -= a[l]
		l++
	}
	l = n - 1
	r = n - 1
	sum = 0
	for r >= 0 {
		for l != -1 && sum+a[l] <= x {
			sum += a[l]
			l--
		}
		right[r] = r - l
		sum -= a[r]
		r--
	}
	dp_l := [5000][5001]int64{}
	dp_r := [5000][5001]int64{}

	for i := int64(0); i <= n; i++ {
		for j := int64(0); j < n; j++ {
			if i == 0 {
				dp_l[j][i] = 0
				dp_r[j][i] = 0
				continue
			}
			l = j
			r = j + i - 1
			if r >= n {
				break
			}
			cnt := left[l]
			if cnt > i-1 {
				cnt = i - 1
			}
			x := dp_r[r][i-1] - dp_r[r][i-cnt-1]
			if x != cnt {
				dp_l[l][i] = dp_l[l][i-1] + 1
				dp_r[r][i] = dp_r[r][i-1] + 1
				continue
			}

			cnt = right[r]
			if cnt > i-1 {
				cnt = i - 1
			}
			x = dp_l[l][i-1] - dp_l[l][i-cnt-1]
			if x != cnt {
				dp_l[l][i] = dp_l[l][i-1] + 1
				dp_r[r][i] = dp_r[r][i-1] + 1
				continue
			}
			dp_l[l][i] = dp_l[l][i-1]
			dp_r[r][i] = dp_r[r][i-1]
		}
	}
	if dp_l[0][n] == dp_l[0][n-1] {
		fmt.Println("B")
	} else {
		fmt.Println("A")
	}
}
0