結果

問題 No.45 回転寿司
ユーザー DialBirdDialBird
提出日時 2017-02-09 10:05:25
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 282 ms / 5,000 ms
コード長 725 bytes
コンパイル時間 629 ms
コンパイル使用メモリ 62,280 KB
実行使用メモリ 66,560 KB
最終ジャッジ日時 2024-12-27 15:50:47
合計ジャッジ時間 4,269 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
15,232 KB
testcase_01 AC 96 ms
26,624 KB
testcase_02 AC 183 ms
45,056 KB
testcase_03 AC 229 ms
53,504 KB
testcase_04 AC 117 ms
28,672 KB
testcase_05 AC 6 ms
5,248 KB
testcase_06 AC 81 ms
21,632 KB
testcase_07 AC 174 ms
44,800 KB
testcase_08 AC 23 ms
8,960 KB
testcase_09 AC 210 ms
51,968 KB
testcase_10 AC 50 ms
16,128 KB
testcase_11 AC 17 ms
7,424 KB
testcase_12 AC 191 ms
48,128 KB
testcase_13 AC 5 ms
5,248 KB
testcase_14 AC 3 ms
5,248 KB
testcase_15 AC 62 ms
18,560 KB
testcase_16 AC 29 ms
10,368 KB
testcase_17 AC 53 ms
15,104 KB
testcase_18 AC 30 ms
10,752 KB
testcase_19 AC 147 ms
38,144 KB
testcase_20 AC 3 ms
5,248 KB
testcase_21 AC 5 ms
5,248 KB
testcase_22 AC 2 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 65 ms
18,560 KB
testcase_27 AC 132 ms
36,608 KB
testcase_28 AC 68 ms
20,736 KB
testcase_29 AC 114 ms
32,256 KB
testcase_30 AC 130 ms
33,792 KB
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 2 ms
5,248 KB
testcase_33 AC 282 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