結果

問題 No.973 余興
ユーザー SugihaMSugihaM
提出日時 2020-04-22 17:33:26
言語 Go
(1.22.1)
結果
WA  
実行時間 -
コード長 1,707 bytes
コンパイル時間 11,668 ms
コンパイル使用メモリ 240,036 KB
実行使用メモリ 405,340 KB
最終ジャッジ日時 2024-10-11 21:20:32
合計ジャッジ時間 37,937 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 772 ms
265,304 KB
testcase_03 AC 705 ms
265,688 KB
testcase_04 AC 697 ms
265,440 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 705 ms
265,044 KB
testcase_09 AC 702 ms
265,436 KB
testcase_10 AC 657 ms
258,220 KB
testcase_11 AC 242 ms
128,292 KB
testcase_12 AC 244 ms
128,420 KB
testcase_13 AC 230 ms
127,772 KB
testcase_14 WA -
testcase_15 AC 24 ms
19,332 KB
testcase_16 AC 23 ms
20,428 KB
testcase_17 AC 12 ms
13,848 KB
testcase_18 AC 20 ms
18,216 KB
testcase_19 WA -
testcase_20 AC 12 ms
13,852 KB
testcase_21 AC 22 ms
19,328 KB
testcase_22 AC 23 ms
19,324 KB
testcase_23 AC 18 ms
18,224 KB
testcase_24 AC 19 ms
18,220 KB
testcase_25 AC 7 ms
9,724 KB
testcase_26 AC 13 ms
13,848 KB
testcase_27 AC 22 ms
24,276 KB
testcase_28 AC 19 ms
18,220 KB
testcase_29 AC 20 ms
18,216 KB
testcase_30 AC 731 ms
265,436 KB
testcase_31 AC 749 ms
265,436 KB
testcase_32 AC 739 ms
265,436 KB
testcase_33 AC 739 ms
265,688 KB
testcase_34 AC 731 ms
264,912 KB
testcase_35 AC 743 ms
265,436 KB
testcase_36 AC 728 ms
260,924 KB
testcase_37 WA -
testcase_38 AC 736 ms
265,180 KB
testcase_39 AC 716 ms
265,428 KB
testcase_40 AC 2 ms
6,816 KB
testcase_41 AC 1 ms
6,820 KB
testcase_42 AC 1 ms
6,816 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 1 ms
6,816 KB
testcase_46 AC 748 ms
265,432 KB
testcase_47 WA -
testcase_48 AC 737 ms
265,428 KB
testcase_49 AC 682 ms
251,016 KB
testcase_50 AC 730 ms
264,280 KB
testcase_51 AC 738 ms
265,432 KB
testcase_52 AC 745 ms
265,440 KB
testcase_53 AC 729 ms
262,352 KB
testcase_54 AC 741 ms
265,436 KB
testcase_55 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

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

var sc = bufio.NewScanner(os.Stdin)

func Scanner() string {
	sc.Scan()
	return sc.Text()
}
func main() {
	buf := make([]byte, 0)
	sc.Buffer(buf, 100000007)
	sc.Split(bufio.ScanWords)
	n, _ := strconv.Atoi(Scanner())
	x, _ := strconv.Atoi(Scanner())
	a := make([]int, n)
	for i := 0; i < n; i++ {
		a[i], _ = strconv.Atoi(Scanner())
	}

	l := make([]int, n)
	r := make([]int, n)
	sum := 0
	count := 0
	for i := 0; i < n; i++ {
		for j := i; j < n; j++ {
			sum += a[j]
			if sum > x {
				break
			}
			count++
		}
		l[i] = count
		sum = 0
		count = 0
		for j := i; j < n; j++ {
			sum += a[j]
			if sum > x {
				break
			}
			count++
		}
		r[i] = count
	}

	dp_l := make([][]int, n+1)
	for i := 0; i < n; i++ {
		dp_l[i] = make([]int, n+1)
	}
	dp_r := make([][]int, n+1)
	for i := 0; i < n; i++ {
		dp_r[i] = make([]int, n+1)
	}
	for i := 0; i < n; i++ {
		dp_l[i][0] = 0
		dp_r[i][0] = 0
	}
	left := 0
	right := 0
	for i := 1; i <= n; i++ {
		for j := 0; j < n; j++ {
			left = j
			right = j + i - 1
			if right >= n {
				break
			}
			count = min(l[left], i-1)
			if dp_r[right][i-1]-dp_r[right][i-count-1] != count {
				dp_l[left][i] = dp_l[left][i-1] + 1
				dp_r[right][i] = dp_r[right][i-1] + 1
				continue
			}

			count = min(r[right], i-1)
			if dp_l[left][i-1]-dp_l[left][i-count-1] != count {
				dp_l[left][i] = dp_l[left][i-1] + 1
				dp_r[right][i] = dp_r[right][i-1] + 1
				continue
			}
			dp_l[left][i] = dp_l[left][i-1]
			dp_r[right][i] = dp_r[right][i-1]
		}
	}
	ans := "A"
	if dp_l[0][n] == dp_l[0][n-1] {
		ans = "B"
	}
	fmt.Println(ans)
}

func min(x int, y int) int {
	if x > y {
		return y
	} else {
		return x
	}
}
0