結果

問題 No.286 Modulo Discount Store
ユーザー hotpepsihotpepsi
提出日時 2015-11-01 00:45:07
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 6 ms / 2,000 ms
コード長 731 bytes
コンパイル時間 379 ms
コンパイル使用メモリ 59,472 KB
実行使用メモリ 4,372 KB
最終ジャッジ日時 2023-10-11 07:35:33
合計ジャッジ時間 2,528 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,352 KB
testcase_01 AC 2 ms
4,352 KB
testcase_02 AC 2 ms
4,352 KB
testcase_03 AC 2 ms
4,348 KB
testcase_04 AC 2 ms
4,352 KB
testcase_05 AC 2 ms
4,352 KB
testcase_06 AC 4 ms
4,356 KB
testcase_07 AC 2 ms
4,348 KB
testcase_08 AC 2 ms
4,352 KB
testcase_09 AC 2 ms
4,356 KB
testcase_10 AC 2 ms
4,348 KB
testcase_11 AC 2 ms
4,352 KB
testcase_12 AC 1 ms
4,352 KB
testcase_13 AC 3 ms
4,352 KB
testcase_14 AC 2 ms
4,356 KB
testcase_15 AC 1 ms
4,352 KB
testcase_16 AC 1 ms
4,352 KB
testcase_17 AC 6 ms
4,348 KB
testcase_18 AC 2 ms
4,352 KB
testcase_19 AC 2 ms
4,352 KB
testcase_20 AC 1 ms
4,348 KB
testcase_21 AC 2 ms
4,372 KB
testcase_22 AC 1 ms
4,348 KB
testcase_23 AC 3 ms
4,348 KB
testcase_24 AC 2 ms
4,352 KB
testcase_25 AC 2 ms
4,348 KB
testcase_26 AC 1 ms
4,352 KB
testcase_27 AC 2 ms
4,352 KB
testcase_28 AC 4 ms
4,348 KB
testcase_29 AC 1 ms
4,352 KB
testcase_30 AC 1 ms
4,352 KB
testcase_31 AC 1 ms
4,352 KB
testcase_32 AC 2 ms
4,352 KB
testcase_33 AC 1 ms
4,348 KB
testcase_34 AC 2 ms
4,348 KB
testcase_35 AC 2 ms
4,348 KB
testcase_36 AC 2 ms
4,352 KB
testcase_37 AC 2 ms
4,352 KB
testcase_38 AC 1 ms
4,352 KB
testcase_39 AC 4 ms
4,348 KB
testcase_40 AC 2 ms
4,348 KB
testcase_41 AC 2 ms
4,352 KB
testcase_42 AC 2 ms
4,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <numeric>
#include <cstring>

using namespace std;

int N;
int M[16];
int memo[1 << 15];

int dfs(int b) {
	int &r = memo[b];
	if (r < 0) {
		r = 0;
		int sum = 0;
		for (int i = 0; i < N; ++i) {
			if (b & (1 << i)) {
				sum += M[i];
			}
		}
		for (int i = 0; i < N; ++i) {
			int a = (b & (1 << i));
			if (a) {
				int c = dfs(b ^ a);
				r = max(r, c + min(M[i], (sum - M[i]) % 1000));
			}
		}
	}
	return r;
}

int main(int argc, char *argv[]) {
	cin >> N;
	for (int i = 0; i < N; ++i) {
		cin >> M[i];
	}

	memset(memo, -1, sizeof(memo));
	int discount = dfs((1 << N) - 1);
	int sum = accumulate(M, M + N, 0);
	int ans = sum - discount;
	cout << ans << endl;

	return 0;
}
0