結果

問題 No.45 回転寿司
ユーザー newlife171128newlife171128
提出日時 2017-12-23 08:11:39
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 342 ms / 5,000 ms
コード長 699 bytes
コンパイル時間 790 ms
コンパイル使用メモリ 64,208 KB
実行使用メモリ 66,560 KB
最終ジャッジ日時 2024-12-27 17:53:38
合計ジャッジ時間 5,313 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
15,360 KB
testcase_01 AC 128 ms
26,624 KB
testcase_02 AC 232 ms
45,056 KB
testcase_03 AC 282 ms
53,632 KB
testcase_04 AC 137 ms
28,672 KB
testcase_05 AC 7 ms
5,248 KB
testcase_06 AC 93 ms
21,632 KB
testcase_07 AC 222 ms
44,800 KB
testcase_08 AC 30 ms
9,088 KB
testcase_09 AC 277 ms
52,096 KB
testcase_10 AC 70 ms
16,128 KB
testcase_11 AC 21 ms
7,424 KB
testcase_12 AC 244 ms
48,128 KB
testcase_13 AC 6 ms
5,248 KB
testcase_14 AC 4 ms
5,248 KB
testcase_15 AC 86 ms
18,560 KB
testcase_16 AC 40 ms
10,496 KB
testcase_17 AC 64 ms
15,232 KB
testcase_18 AC 37 ms
10,752 KB
testcase_19 AC 189 ms
38,016 KB
testcase_20 AC 5 ms
5,248 KB
testcase_21 AC 6 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 78 ms
18,688 KB
testcase_27 AC 171 ms
36,608 KB
testcase_28 AC 89 ms
20,608 KB
testcase_29 AC 154 ms
32,384 KB
testcase_30 AC 171 ms
33,792 KB
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 2 ms
5,248 KB
testcase_33 AC 342 ms
66,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <string>
#include <sstream>
#include <cmath>

using namespace std;
int n = 0;
int nums[1001];
int b[1001][31000];
int ans = 0;
void dfs(int i, int sum, bool judge) {
	if (i == n) {
		ans = max(ans, sum);
		/*cout << i << " " << ans << endl;*/
		return;
	}
	if(b[i][sum] !=0){
		return;
	}

	dfs(i + 1, sum, false);
	b[i+1][sum] =1;

	if (!judge) {
		dfs(i + 1, sum + nums[i], true);
	/*	b[i+1][sum+nums[i]] =1;*/
	}/* else {
		dfs(i + 1, sum, false);
	}*/

	return;
}

int main() {

	cin >> n;

	int tmp = 0;
	for (int i = 0; i < n; i++) {
		cin >> tmp;
		nums[i] = tmp;
	}

	dfs(0, 0, false);

	cout << ans << endl;

	return 0;
}
0