結果

問題 No.45 回転寿司
ユーザー DialBirdDialBird
提出日時 2017-02-09 10:05:25
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 297 ms / 5,000 ms
コード長 725 bytes
コンパイル時間 508 ms
コンパイル使用メモリ 62,548 KB
実行使用メモリ 66,560 KB
最終ジャッジ日時 2024-06-08 11:09:03
合計ジャッジ時間 4,124 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
15,360 KB
testcase_01 AC 99 ms
26,752 KB
testcase_02 AC 186 ms
45,056 KB
testcase_03 AC 218 ms
53,504 KB
testcase_04 AC 106 ms
28,800 KB
testcase_05 AC 6 ms
5,376 KB
testcase_06 AC 76 ms
21,632 KB
testcase_07 AC 177 ms
44,672 KB
testcase_08 AC 23 ms
9,088 KB
testcase_09 AC 220 ms
51,968 KB
testcase_10 AC 54 ms
16,000 KB
testcase_11 AC 17 ms
7,552 KB
testcase_12 AC 196 ms
48,256 KB
testcase_13 AC 5 ms
5,376 KB
testcase_14 AC 3 ms
5,376 KB
testcase_15 AC 62 ms
18,432 KB
testcase_16 AC 30 ms
10,496 KB
testcase_17 AC 50 ms
14,976 KB
testcase_18 AC 31 ms
10,752 KB
testcase_19 AC 151 ms
38,144 KB
testcase_20 AC 4 ms
5,376 KB
testcase_21 AC 5 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 65 ms
18,560 KB
testcase_27 AC 141 ms
36,736 KB
testcase_28 AC 71 ms
20,608 KB
testcase_29 AC 124 ms
32,384 KB
testcase_30 AC 135 ms
33,792 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 297 ms
66,560 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];

  int res_1 = solve(idx + 1, total);
  int res_2 = solve(idx + 2, total + v_list[idx]);
  dp[idx][total] = MAX(res_1, res_2);
  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