結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
15,488 KB
testcase_01 AC 105 ms
27,008 KB
testcase_02 AC 195 ms
45,056 KB
testcase_03 AC 238 ms
53,760 KB
testcase_04 AC 120 ms
28,800 KB
testcase_05 AC 6 ms
6,816 KB
testcase_06 AC 86 ms
21,632 KB
testcase_07 AC 190 ms
44,800 KB
testcase_08 AC 28 ms
9,088 KB
testcase_09 AC 239 ms
52,096 KB
testcase_10 AC 58 ms
16,128 KB
testcase_11 AC 20 ms
7,552 KB
testcase_12 AC 211 ms
48,256 KB
testcase_13 AC 5 ms
6,824 KB
testcase_14 AC 3 ms
6,820 KB
testcase_15 AC 69 ms
18,432 KB
testcase_16 AC 32 ms
10,624 KB
testcase_17 AC 55 ms
15,232 KB
testcase_18 AC 33 ms
11,008 KB
testcase_19 AC 166 ms
38,144 KB
testcase_20 AC 3 ms
6,816 KB
testcase_21 AC 4 ms
6,816 KB
testcase_22 AC 1 ms
6,820 KB
testcase_23 AC 2 ms
6,820 KB
testcase_24 AC 1 ms
6,816 KB
testcase_25 AC 1 ms
6,820 KB
testcase_26 AC 71 ms
18,688 KB
testcase_27 AC 156 ms
36,736 KB
testcase_28 AC 82 ms
20,608 KB
testcase_29 AC 130 ms
32,512 KB
testcase_30 AC 144 ms
33,664 KB
testcase_31 AC 1 ms
6,816 KB
testcase_32 AC 1 ms
6,816 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