結果

問題 No.710 チーム戦
ユーザー lapilapi
提出日時 2019-08-10 18:47:47
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,205 bytes
コンパイル時間 848 ms
コンパイル使用メモリ 106,824 KB
実行使用メモリ 42,624 KB
最終ジャッジ日時 2024-07-19 17:14:40
合計ジャッジ時間 2,432 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 25 ms
22,912 KB
testcase_03 AC 26 ms
23,424 KB
testcase_04 AC 30 ms
24,448 KB
testcase_05 AC 28 ms
22,400 KB
testcase_06 AC 31 ms
23,552 KB
testcase_07 AC 31 ms
23,808 KB
testcase_08 AC 31 ms
24,960 KB
testcase_09 AC 27 ms
23,680 KB
testcase_10 AC 29 ms
21,632 KB
testcase_11 AC 31 ms
23,424 KB
testcase_12 AC 31 ms
24,704 KB
testcase_13 AC 27 ms
24,064 KB
testcase_14 AC 28 ms
24,192 KB
testcase_15 AC 28 ms
22,144 KB
testcase_16 AC 33 ms
24,832 KB
testcase_17 AC 25 ms
21,760 KB
testcase_18 AC 32 ms
23,552 KB
testcase_19 AC 33 ms
24,448 KB
testcase_20 AC 30 ms
22,784 KB
testcase_21 AC 32 ms
24,064 KB
testcase_22 WA -
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 57 ms
41,216 KB
testcase_25 AC 1 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <algorithm>
#include <vector>
#include <stack>
#include <queue>
#include <list>
#include <set>
#include <map>
#include <numeric>
#include <regex>
#include <tuple>
#include <iomanip>
#include <cmath>
using namespace std;

typedef long long ll;
typedef pair<int, int> P;
#define MOD 1000000007 // 10^9 + 7
#define INF 1000000000 // 10^9
#define LLINF 1LL<<60

int A[109], B[109];
int dp[109][100009]; // dp[i][j] : j秒かけて1からi番目までのうちのいくつかを解いたときの、浮いた時間の最大値

int main() {
	cin.tie(0);
	ios::sync_with_stdio(false);

	int N; cin >> N;
	int btot = 0;
	int atot = 0;
	for (int i = 1; i <= N; i++) {
		cin >> A[i] >> B[i];
		atot += A[i];
		btot += B[i];
	}

	for (int i = 0; i < N; i++) {
		for (int j = 0; j <= atot; j++) {
			dp[i + 1][j] = max(dp[i + 1][j], dp[i][j]); // A君がi+1番目の問題を解かない
			dp[i + 1][j + A[i + 1]] = max(dp[i + 1][j + A[i + 1]], dp[i][j] + B[i + 1]); // A君がi+1番目の問題を解いた場合
		}
	}

	int ans = INF;
	for (int i = 0; i <= atot; i++) {
		int T = max(i, btot - dp[N][i]);
		ans = min(ans, T);
	}

	cout << ans << endl;

	return 0;
}
0