結果

問題 No.45 回転寿司
ユーザー seiichiseiichi
提出日時 2021-01-14 16:27:26
言語 Go
(1.22.1)
結果
AC  
実行時間 276 ms / 5,000 ms
コード長 1,318 bytes
コンパイル時間 11,022 ms
コンパイル使用メモリ 223,244 KB
実行使用メモリ 102,104 KB
最終ジャッジ日時 2024-05-03 08:48:36
合計ジャッジ時間 15,135 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
44,748 KB
testcase_01 AC 157 ms
61,136 KB
testcase_02 AC 219 ms
83,672 KB
testcase_03 AC 240 ms
91,868 KB
testcase_04 AC 164 ms
65,240 KB
testcase_05 AC 30 ms
14,016 KB
testcase_06 AC 138 ms
55,004 KB
testcase_07 AC 221 ms
83,672 KB
testcase_08 AC 72 ms
30,412 KB
testcase_09 AC 234 ms
87,772 KB
testcase_10 AC 114 ms
46,792 KB
testcase_11 AC 64 ms
28,360 KB
testcase_12 AC 225 ms
85,716 KB
testcase_13 AC 27 ms
14,016 KB
testcase_14 AC 18 ms
9,660 KB
testcase_15 AC 126 ms
50,892 KB
testcase_16 AC 82 ms
34,504 KB
testcase_17 AC 107 ms
44,748 KB
testcase_18 AC 84 ms
36,556 KB
testcase_19 AC 195 ms
75,476 KB
testcase_20 AC 17 ms
11,708 KB
testcase_21 AC 25 ms
11,972 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 3 ms
6,940 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 122 ms
48,844 KB
testcase_27 AC 196 ms
75,480 KB
testcase_28 AC 135 ms
52,940 KB
testcase_29 AC 182 ms
69,340 KB
testcase_30 AC 186 ms
71,380 KB
testcase_31 AC 2 ms
6,944 KB
testcase_32 AC 2 ms
6,944 KB
testcase_33 AC 276 ms
102,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"fmt"
)

func scan() (N int, V []int) {
	fmt.Scan(&N)
	for i := 0; i < N; i++ {
		var v int
		fmt.Scan(&v)
		V = append(V, v)
	}
	return
}

func max(a, b int) int {
	if a > b {
		return a
	}
	return b
}
func main() {
	N, V := scan()
	// N := 3
	// V := []int{1, 2, 3}
	// N := 4
	// V := []int{1, 2, 3, 4}
	// N := 4
	// V := []int{5, 4, 4, 9}
	// N := 7
	// V := []int{1, 2, 9, 10, 1, 1, 4}
	// N := 1
	// V := []int{100}
	// N := 2
	// V := []int{45, 32}

	if N == 1 {
		fmt.Print(V[0])
		return
	}

	// 皿Nが与えられた場合のおいしさの最大値のマッピングリスト
	// NはN-1の結果から得られるので、全探索は必要ない
	var dp [1000][1000 * 100]bool
	var max_val [1000]int

	// N=1or2の時はシンプルなので先に埋めちゃう
	dp[0][V[0]] = true
	max_val[0] = V[0]
	dp[1][V[1]] = true
	max_val[1] = V[1]

	for i := 0; i < N; i++ {
		if i-2 >= 0 {
			for j := 0; j < len(dp[i-2]); j++ {
				if dp[i-2][j] {
					dp[i][V[i]+j] = true
					if V[i]+j > max_val[i] {
						max_val[i] = V[i] + j
					}
				}
			}
		}
		if i-3 >= 0 {
			for j := 0; j < len(dp[i-3]); j++ {
				if dp[i-3][j] {
					dp[i][V[i]+j] = true
					if V[i]+j > max_val[i] {
						max_val[i] = V[i] + j
					}
				}
			}
		}
	}
	fmt.Print(max(max_val[N-1], max_val[N-2]))
}
0