結果

問題 No.45 回転寿司
ユーザー mega_yadoranmega_yadoran
提出日時 2018-10-22 15:24:30
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 2,403 bytes
コンパイル時間 266 ms
コンパイル使用メモリ 82,592 KB
実行使用メモリ 90,452 KB
最終ジャッジ日時 2024-11-19 03:46:30
合計ジャッジ時間 45,888 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 525 ms
78,620 KB
testcase_01 AC 1,390 ms
81,876 KB
testcase_02 AC 3,596 ms
88,144 KB
testcase_03 AC 4,630 ms
90,452 KB
testcase_04 AC 1,658 ms
82,448 KB
testcase_05 AC 57 ms
73,696 KB
testcase_06 AC 982 ms
80,300 KB
testcase_07 AC 3,500 ms
88,236 KB
testcase_08 AC 187 ms
77,056 KB
testcase_09 AC 3,983 ms
89,076 KB
testcase_10 AC 598 ms
78,800 KB
testcase_11 AC 155 ms
76,576 KB
testcase_12 AC 3,800 ms
88,780 KB
testcase_13 AC 52 ms
71,276 KB
testcase_14 AC 47 ms
65,216 KB
testcase_15 AC 764 ms
79,644 KB
testcase_16 AC 253 ms
76,956 KB
testcase_17 AC 509 ms
78,408 KB
testcase_18 AC 278 ms
77,508 KB
testcase_19 AC 2,503 ms
85,024 KB
testcase_20 AC 46 ms
64,380 KB
testcase_21 AC 51 ms
68,928 KB
testcase_22 AC 35 ms
53,628 KB
testcase_23 AC 34 ms
52,872 KB
testcase_24 AC 34 ms
53,376 KB
testcase_25 AC 35 ms
52,748 KB
testcase_26 AC 696 ms
79,324 KB
testcase_27 AC 2,537 ms
85,384 KB
testcase_28 AC 879 ms
80,056 KB
testcase_29 AC 1,989 ms
83,340 KB
testcase_30 AC 2,202 ms
84,132 KB
testcase_31 AC 35 ms
53,552 KB
testcase_32 AC 35 ms
52,772 KB
testcase_33 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

# !/bin/python
# this code tested Python3.6+

"""
入力:
N
V1 V2 V3 …VN

例:
4
1 2 3 4

で入力された寿司の美味しさで、
皿を取ったら、2個目は1回開けなければならないとき、
美味しさの最大となる組み合わせを探せ。
上記の例なら、2 + 4 で 6 (2 を取ったので 3 は取れない)
"""

memories = {}  # メモ化キャッシュ


def select(index, scores):
    """scores から指定のインデックス要素と、その後ろを取得する。
    ※ただし、後ろ部分に関しては、問題の定義より一つ以上空白をあける。
    """
    tail_head_index = index + 2
    head = scores[index]
    if len(scores) <= tail_head_index:
        return (head, [])
    else:
        return (head, scores[tail_head_index:])


def max_score(scores):
    """scores で渡した点数リストから、最大スコアの組み合わせを計算する。
    ただし、選択したスコアから、次のスコアを選ぶときには、
    一つ以上隙間を用意しなければならない。
    
    Arguments:
        scores {list} -- スコアリスト
    
    Returns:
        int -- そのリストから計算できる最大スコア
    """

    tupled = tuple(scores)
    if tupled in memories:
        # キャッシュ済みならキャッシュから返す
        #print('Cache HIT!')
        return memories.get(tupled)

    list_length = len(scores)
    if list_length == 1:
        # 要素が一つならその値を返す
        memories[tupled] = scores[0]
        return scores[0]
    
    # 今の scores 内での最大取得可能スコアを計算
    cur_score = 0
    for i in range(0, list_length):
        # N 番目要素を順に取得して試す。
        tmp_score, tail = select(i, scores)

        # 後ろの要素があるなら、その最大スコアを加算
        if len(tail) > 0:
            tmp_score = tmp_score + max_score(tail)

        # 現在計算しているスコアが大きければ置き換える
        cur_score = tmp_score if cur_score <= tmp_score else cur_score

    # スコアをキャッシュしてリターン
    memories[tupled] = cur_score
    return cur_score



if __name__ == '__main__':
    N = int(input())  # リストサイズ
    SCORES = [int(v) for v in input().split(' ')]  # 寿司おいしさリスト
    print(max_score(SCORES))
0