結果

問題 No.45 回転寿司
ユーザー newlife171128newlife171128
提出日時 2017-12-23 08:10:28
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 700 bytes
コンパイル時間 662 ms
コンパイル使用メモリ 64,348 KB
実行使用メモリ 66,560 KB
最終ジャッジ日時 2024-05-09 22:01:59
合計ジャッジ時間 4,893 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
15,360 KB
testcase_01 AC 120 ms
26,752 KB
testcase_02 AC 228 ms
44,928 KB
testcase_03 AC 272 ms
53,632 KB
testcase_04 AC 131 ms
28,800 KB
testcase_05 AC 7 ms
5,376 KB
testcase_06 AC 93 ms
21,632 KB
testcase_07 AC 220 ms
44,800 KB
testcase_08 AC 29 ms
9,088 KB
testcase_09 AC 273 ms
52,096 KB
testcase_10 AC 65 ms
16,256 KB
testcase_11 AC 21 ms
7,552 KB
testcase_12 AC 245 ms
48,256 KB
testcase_13 AC 6 ms
5,376 KB
testcase_14 AC 3 ms
5,376 KB
testcase_15 AC 82 ms
18,432 KB
testcase_16 AC 37 ms
10,624 KB
testcase_17 AC 62 ms
15,104 KB
testcase_18 AC 38 ms
10,880 KB
testcase_19 AC 184 ms
38,272 KB
testcase_20 AC 3 ms
5,376 KB
testcase_21 AC 5 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 82 ms
18,816 KB
testcase_27 AC 176 ms
36,736 KB
testcase_28 AC 89 ms
20,608 KB
testcase_29 AC 151 ms
32,256 KB
testcase_30 AC 165 ms
33,920 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 1 ms
5,376 KB
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

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][30100];
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