結果

問題 No.45 回転寿司
ユーザー DialBirdDialBird
提出日時 2017-02-09 10:06:31
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 365 ms / 5,000 ms
コード長 683 bytes
コンパイル時間 1,898 ms
コンパイル使用メモリ 62,044 KB
実行使用メモリ 66,432 KB
最終ジャッジ日時 2024-12-27 16:03:42
合計ジャッジ時間 6,610 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
15,360 KB
testcase_01 AC 115 ms
26,752 KB
testcase_02 AC 234 ms
45,056 KB
testcase_03 AC 273 ms
53,504 KB
testcase_04 AC 135 ms
28,800 KB
testcase_05 AC 7 ms
5,248 KB
testcase_06 AC 98 ms
21,504 KB
testcase_07 AC 219 ms
44,928 KB
testcase_08 AC 30 ms
9,088 KB
testcase_09 AC 277 ms
52,096 KB
testcase_10 AC 66 ms
16,128 KB
testcase_11 AC 21 ms
7,552 KB
testcase_12 AC 239 ms
48,128 KB
testcase_13 AC 7 ms
5,248 KB
testcase_14 AC 4 ms
5,248 KB
testcase_15 AC 82 ms
18,304 KB
testcase_16 AC 34 ms
10,368 KB
testcase_17 AC 62 ms
15,104 KB
testcase_18 AC 41 ms
10,752 KB
testcase_19 AC 185 ms
38,272 KB
testcase_20 AC 3 ms
5,248 KB
testcase_21 AC 6 ms
5,248 KB
testcase_22 AC 1 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 84 ms
18,560 KB
testcase_27 AC 175 ms
36,736 KB
testcase_28 AC 92 ms
20,608 KB
testcase_29 AC 152 ms
32,384 KB
testcase_30 AC 172 ms
33,920 KB
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 2 ms
5,248 KB
testcase_33 AC 365 ms
66,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <array>
#include <algorithm>

using namespace std;

#define REP(i,first,last) for (int i=first;i<last;i++)
#define MAX(x,y) (x > y ? x : y)
#define MIN(x,y) (x < y ? x : y)

const int MAX_N = 1000;
const int MAX_V = 100;
int N;
vector<int> v_list;
int dp[MAX_N + 1][MAX_N * MAX_V + 1];

int solve(int idx, int total){
  if (idx >= N) return total;
  if (dp[idx][total]) return dp[idx][total];

  dp[idx][total] = MAX(solve(idx + 1, total), solve(idx + 2, total + v_list[idx]));
  return dp[idx][total];
}

int main(){
  cin >> N;

  int val;
  REP(i,0,N){
    cin >> val;
    v_list.push_back(val);
  }

  cout << solve(0, 0) << endl;
}
0