結果

問題 No.949 飲酒プログラミングコンテスト
ユーザー misora192misora192
提出日時 2020-05-09 14:49:59
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 77 ms / 2,500 ms
コード長 1,282 bytes
コンパイル時間 1,598 ms
コンパイル使用メモリ 173,724 KB
実行使用メモリ 12,288 KB
最終ジャッジ日時 2024-07-05 18:48:26
合計ジャッジ時間 3,598 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 43 ms
9,472 KB
testcase_12 AC 46 ms
9,728 KB
testcase_13 AC 39 ms
8,832 KB
testcase_14 AC 6 ms
5,376 KB
testcase_15 AC 27 ms
6,656 KB
testcase_16 AC 55 ms
9,600 KB
testcase_17 AC 8 ms
5,376 KB
testcase_18 AC 70 ms
11,828 KB
testcase_19 AC 26 ms
6,912 KB
testcase_20 AC 6 ms
5,376 KB
testcase_21 AC 3 ms
5,376 KB
testcase_22 AC 3 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 36 ms
8,064 KB
testcase_25 AC 66 ms
11,904 KB
testcase_26 AC 71 ms
12,240 KB
testcase_27 AC 64 ms
11,136 KB
testcase_28 AC 77 ms
12,288 KB
testcase_29 AC 38 ms
8,320 KB
testcase_30 AC 13 ms
5,760 KB
testcase_31 AC 6 ms
5,632 KB
testcase_32 AC 59 ms
11,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i=(0);i<(n);i++)

using namespace std;

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

int n;
vector<int> a, b, d;

bool cond(int k){
	if(k == 0) return true;

	bool dp[k+1][k+1];
	rep(i, k + 1) rep(j, k + 1) dp[i][j] = false;
	dp[0][0] = true;

	rep(i, k) {
		dp[i+1][0] = dp[i][0] && (d[k-i-1] <= a[i+1] + b[0]);
		rep(j, i) dp[i+1][j+1] = (dp[i][j] || dp[i][j+1]) && (d[k-i-1] <= a[i-j] + b[j+1]);
		dp[i+1][i+1] = dp[i][i] && (d[k-i-1] <= a[0] + b[i+1]);
	}

	rep(i, k + 1) if(dp[k][i]) return true;
	return false;
}

// condを満たす最大のxを求める(upper_bound)
// 全てのxが条件を満たさない場合は-1を返す(-1はとりえない値)
int upper_bound_cond(){
	int lb = -1, ub = n+1;

	while(ub - lb > 1){
		int mid = (lb + ub) / 2;

		bool ok = cond(mid);
		// cout << mid << "," << ok << "\n";
		if(ok) lb = mid;   // Answer is in [mid, ub)
		else ub = mid;            // Answer is in [lb, mid)
	}

	// now lb + 1 = ub
	return lb;
}

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

	cin >> n;

	a.resize(n + 1);
	b.resize(n + 1);
	d.resize(n);
	rep(i, n + 1) cin >> a[i];
	rep(i, n + 1) cin >> b[i];
	rep(i, n) cin >> d[i];

	sort(d.begin(), d.end());
	cout << upper_bound_cond() << endl;
}
0