結果

問題 No.45 回転寿司
ユーザー suakiisuakii
提出日時 2018-06-07 13:52:02
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 238 ms / 5,000 ms
コード長 531 bytes
コンパイル時間 1,590 ms
コンパイル使用メモリ 157,740 KB
実行使用メモリ 66,560 KB
最終ジャッジ日時 2024-06-08 12:15:20
合計ジャッジ時間 4,993 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
15,360 KB
testcase_01 AC 82 ms
26,752 KB
testcase_02 AC 148 ms
45,056 KB
testcase_03 AC 181 ms
53,504 KB
testcase_04 AC 93 ms
28,672 KB
testcase_05 AC 5 ms
6,940 KB
testcase_06 AC 63 ms
21,504 KB
testcase_07 AC 151 ms
44,800 KB
testcase_08 AC 21 ms
8,960 KB
testcase_09 AC 196 ms
51,968 KB
testcase_10 AC 47 ms
16,128 KB
testcase_11 AC 16 ms
7,680 KB
testcase_12 AC 173 ms
48,128 KB
testcase_13 AC 5 ms
6,944 KB
testcase_14 AC 3 ms
6,940 KB
testcase_15 AC 55 ms
18,432 KB
testcase_16 AC 26 ms
10,240 KB
testcase_17 AC 42 ms
15,104 KB
testcase_18 AC 27 ms
10,752 KB
testcase_19 AC 124 ms
38,144 KB
testcase_20 AC 3 ms
6,940 KB
testcase_21 AC 4 ms
6,944 KB
testcase_22 AC 1 ms
6,940 KB
testcase_23 AC 1 ms
6,944 KB
testcase_24 AC 1 ms
6,944 KB
testcase_25 AC 1 ms
6,944 KB
testcase_26 AC 54 ms
18,560 KB
testcase_27 AC 116 ms
36,736 KB
testcase_28 AC 59 ms
20,480 KB
testcase_29 AC 102 ms
32,384 KB
testcase_30 AC 111 ms
33,664 KB
testcase_31 AC 2 ms
6,940 KB
testcase_32 AC 1 ms
6,940 KB
testcase_33 AC 238 ms
66,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
typedef pair<int, int> pii;
typedef long long int ll;


int n, ans;
int a[1001];
int dp[1001][100001];

int f(int pos, int sum) {
    if (pos >= n)
        return sum;
    else if (dp[pos][sum])
        return dp[pos][sum];
    else
        return dp[pos][sum] = max(f(pos+2, sum+a[pos]),f(pos+1, sum));

}

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);

    cin >> n;
    for (int i = 0; i < n; i++)
        cin >> a[i];

    cout << f(0, 0) << endl;

    return 0;
}

0