結果

問題 No.37 遊園地のアトラクション
ユーザー たこしたこし
提出日時 2014-11-04 11:06:14
言語 C++11
(gcc 13.3.0)
結果
TLE  
実行時間 -
コード長 1,207 bytes
コンパイル時間 2,928 ms
コンパイル使用メモリ 89,544 KB
実行使用メモリ 8,704 KB
最終ジャッジ日時 2024-12-30 17:15:48
合計ジャッジ時間 87,658 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,290 ms
8,704 KB
testcase_01 AC 2 ms
8,576 KB
testcase_02 AC 1,564 ms
8,576 KB
testcase_03 AC 4,479 ms
8,576 KB
testcase_04 AC 1,537 ms
8,704 KB
testcase_05 AC 585 ms
8,704 KB
testcase_06 AC 1,634 ms
8,576 KB
testcase_07 TLE -
testcase_08 AC 841 ms
8,448 KB
testcase_09 AC 263 ms
8,704 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 510 ms
5,248 KB
testcase_13 TLE -
testcase_14 AC 743 ms
5,248 KB
testcase_15 AC 202 ms
5,248 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 81 ms
5,248 KB
testcase_20 AC 4,396 ms
5,248 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 1 ms
5,248 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 3,971 ms
5,248 KB
testcase_28 AC 2 ms
5,248 KB
testcase_29 AC 3,845 ms
5,248 KB
testcase_30 AC 1 ms
8,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <vector>
#include <list>
#include <map>
#include <set>
#include <deque>
#include <stack>
#include <bitset>
#include <algorithm>
#include <functional>
#include <numeric>
#include <utility>
#include <sstream>
#include <iostream>
#include <iomanip>
#include <cstdio>
#include <cmath>
#include <cstdlib>
#include <cctype>
#include <string>
#include <cstring>
#include <ctime>
#include <fstream>

#define INF 100000000
#define EPS 1e-9

using namespace std;

typedef pair<int, int> P;
typedef long long ll;

#define MAX_T 10000
#define MAX_N 15
int T, N;
int c[MAX_N];
int v[MAX_N];

int dp[MAX_N+1][MAX_T + 1];

int les(int s, int m){
	if (m == 0)
		return 0;
	int ans = s / (pow(2, m - 1)) + les(s, m-1);
	return ans;
}

int main() {

	cin >> T;
	cin >> N;
	for (int i = 0; i < N; i++){
		cin >> c[i];
	}
	for (int i = 0; i < N; i++){
		cin >> v[i];
	}

	int ans = 0;

	for (int i = 0; i < N; i++){
		for (int j = 0; j <= T; j++){
			for (int m = 0; j - m*c[i] >= 0; m++){
				dp[i + 1][j] = max(dp[i + 1][j], dp[i][j - m*c[i]] + les(v[i], m));
				ans = max(ans, dp[i + 1][j]);
			}
		}
	}
	
	cout << ans << endl;

	return 0;
}
0