結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
15,232 KB
testcase_01 AC 72 ms
26,624 KB
testcase_02 AC 126 ms
44,928 KB
testcase_03 AC 158 ms
53,504 KB
testcase_04 AC 80 ms
28,672 KB
testcase_05 AC 4 ms
6,940 KB
testcase_06 AC 54 ms
21,504 KB
testcase_07 AC 129 ms
44,672 KB
testcase_08 AC 16 ms
9,088 KB
testcase_09 AC 143 ms
51,968 KB
testcase_10 AC 36 ms
16,128 KB
testcase_11 AC 13 ms
7,552 KB
testcase_12 AC 134 ms
48,128 KB
testcase_13 AC 4 ms
6,940 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 44 ms
18,432 KB
testcase_16 AC 20 ms
10,368 KB
testcase_17 AC 34 ms
15,104 KB
testcase_18 AC 23 ms
10,752 KB
testcase_19 AC 104 ms
38,016 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 4 ms
6,940 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 1 ms
6,940 KB
testcase_24 AC 2 ms
6,944 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 44 ms
18,560 KB
testcase_27 AC 100 ms
36,608 KB
testcase_28 AC 53 ms
20,608 KB
testcase_29 AC 84 ms
32,256 KB
testcase_30 AC 92 ms
33,792 KB
testcase_31 AC 2 ms
6,940 KB
testcase_32 AC 1 ms
6,944 KB
testcase_33 AC 199 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][100000];

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+1, sum), f(pos+2, sum+a[pos]));
        
    
}

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