結果

問題 No.45 回転寿司
ユーザー newlife171128newlife171128
提出日時 2017-12-23 08:11:39
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 295 ms / 5,000 ms
コード長 699 bytes
コンパイル時間 529 ms
コンパイル使用メモリ 64,468 KB
実行使用メモリ 66,688 KB
最終ジャッジ日時 2024-06-08 11:46:59
合計ジャッジ時間 4,304 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
15,232 KB
testcase_01 AC 98 ms
26,880 KB
testcase_02 AC 191 ms
45,056 KB
testcase_03 AC 220 ms
53,504 KB
testcase_04 AC 111 ms
28,672 KB
testcase_05 AC 5 ms
5,376 KB
testcase_06 AC 76 ms
21,632 KB
testcase_07 AC 186 ms
44,672 KB
testcase_08 AC 25 ms
9,216 KB
testcase_09 AC 226 ms
52,096 KB
testcase_10 AC 54 ms
16,128 KB
testcase_11 AC 18 ms
7,552 KB
testcase_12 AC 194 ms
48,256 KB
testcase_13 AC 5 ms
5,376 KB
testcase_14 AC 3 ms
5,376 KB
testcase_15 AC 63 ms
18,560 KB
testcase_16 AC 30 ms
10,368 KB
testcase_17 AC 49 ms
15,360 KB
testcase_18 AC 32 ms
10,880 KB
testcase_19 AC 153 ms
38,144 KB
testcase_20 AC 3 ms
5,376 KB
testcase_21 AC 4 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 1 ms
5,376 KB
testcase_25 AC 1 ms
5,376 KB
testcase_26 AC 65 ms
18,688 KB
testcase_27 AC 140 ms
36,864 KB
testcase_28 AC 73 ms
20,608 KB
testcase_29 AC 122 ms
32,384 KB
testcase_30 AC 137 ms
33,792 KB
testcase_31 AC 1 ms
5,376 KB
testcase_32 AC 1 ms
5,376 KB
testcase_33 AC 295 ms
66,688 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