結果

問題 No.949 飲酒プログラミングコンテスト
ユーザー kotatsugamekotatsugame
提出日時 2019-12-19 02:10:09
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 820 bytes
コンパイル時間 715 ms
コンパイル使用メモリ 73,008 KB
実行使用メモリ 39,384 KB
最終ジャッジ日時 2024-07-06 23:19:23
合計ジャッジ時間 3,861 ms
ジャッジサーバーID
(参考情報)
judge2 / 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 2 ms
5,376 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 3 ms
5,376 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 120 ms
33,280 KB
testcase_12 AC 127 ms
33,536 KB
testcase_13 AC 110 ms
31,744 KB
testcase_14 AC 18 ms
10,240 KB
testcase_15 AC 78 ms
28,416 KB
testcase_16 WA -
testcase_17 AC 23 ms
11,648 KB
testcase_18 AC 165 ms
38,144 KB
testcase_19 AC 89 ms
33,536 KB
testcase_20 AC 21 ms
13,184 KB
testcase_21 AC 8 ms
8,704 KB
testcase_22 AC 13 ms
12,288 KB
testcase_23 AC 4 ms
5,376 KB
testcase_24 AC 91 ms
29,184 KB
testcase_25 AC 174 ms
39,036 KB
testcase_26 AC 173 ms
39,012 KB
testcase_27 WA -
testcase_28 AC 174 ms
38,912 KB
testcase_29 AC 128 ms
39,040 KB
testcase_30 AC 65 ms
39,168 KB
testcase_31 AC 37 ms
39,040 KB
testcase_32 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:8:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    8 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;
int N;
int A[3333],B[3333],D[3333];
int dp[3030][3030];
main()
{
	cin>>N;
	for(int i=0;i<=N;i++)cin>>A[i];
	for(int i=0;i<=N;i++)cin>>B[i];
	for(int i=0;i<N;i++)cin>>D[i];
	sort(D,D+N);
	for(int i=0;i<=N;i++)for(int j=0;j<=N;j++)dp[i][j]=-1;
	dp[0][0]=N;
	for(int i=0;i<=N;i++)for(int j=0;j<=N;j++)
	{
		if(dp[i][j]<0)continue;
		if(i<N)
		{
			int nxt=A[i+1]+B[j];
			int id=lower_bound(D,D+dp[i][j],nxt)-D;
			id--;
			if(id>=0)
			{
				dp[i+1][j]=max(dp[i+1][j],id);
			}
		}
		if(j<N)
		{
			int nxt=A[i]+B[j+1];
			int id=lower_bound(D,D+dp[i][j],nxt)-D;
			id--;
			if(id>=0)
			{
				dp[i][j+1]=max(dp[i][j+1],id);
			}
		}
	}
	int ans=0;
	for(int i=0;i<=N;i++)for(int j=0;j<=N;j++)if(dp[i][j]>=0)ans=max(ans,i+j);
	cout<<ans<<endl;
}
0