結果

問題 No.949 飲酒プログラミングコンテスト
ユーザー kotatsugamekotatsugame
提出日時 2019-12-19 02:16:24
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 168 ms / 2,500 ms
コード長 794 bytes
コンパイル時間 564 ms
コンパイル使用メモリ 73,420 KB
実行使用メモリ 39,156 KB
最終ジャッジ日時 2024-07-06 23:19:57
合計ジャッジ時間 3,779 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 3 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 3 ms
6,944 KB
testcase_11 AC 115 ms
34,844 KB
testcase_12 AC 118 ms
34,680 KB
testcase_13 AC 105 ms
33,436 KB
testcase_14 AC 16 ms
13,924 KB
testcase_15 AC 76 ms
29,052 KB
testcase_16 AC 138 ms
37,900 KB
testcase_17 AC 21 ms
17,040 KB
testcase_18 AC 158 ms
38,452 KB
testcase_19 AC 95 ms
33,704 KB
testcase_20 AC 21 ms
17,140 KB
testcase_21 AC 8 ms
12,700 KB
testcase_22 AC 15 ms
16,356 KB
testcase_23 AC 3 ms
7,704 KB
testcase_24 AC 84 ms
29,728 KB
testcase_25 AC 164 ms
38,932 KB
testcase_26 AC 168 ms
39,156 KB
testcase_27 AC 154 ms
39,124 KB
testcase_28 AC 166 ms
39,004 KB
testcase_29 AC 134 ms
38,988 KB
testcase_30 AC 88 ms
39,096 KB
testcase_31 AC 65 ms
39,000 KB
testcase_32 AC 157 ms
38,992 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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(i<N)
		{
			int nxt=A[i+1]+B[j];
			int id=upper_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=upper_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