結果

問題 No.949 飲酒プログラミングコンテスト
ユーザー kotatsugamekotatsugame
提出日時 2019-12-19 01:56:49
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 869 bytes
コンパイル時間 844 ms
コンパイル使用メモリ 77,356 KB
実行使用メモリ 31,232 KB
最終ジャッジ日時 2024-07-06 23:17:31
合計ジャッジ時間 2,756 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 3 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 3 ms
6,940 KB
testcase_11 AC 42 ms
23,168 KB
testcase_12 WA -
testcase_13 AC 44 ms
23,424 KB
testcase_14 AC 10 ms
8,576 KB
testcase_15 AC 37 ms
20,096 KB
testcase_16 AC 62 ms
29,440 KB
testcase_17 AC 12 ms
9,600 KB
testcase_18 AC 58 ms
30,336 KB
testcase_19 AC 51 ms
22,400 KB
testcase_20 AC 14 ms
9,728 KB
testcase_21 AC 7 ms
6,944 KB
testcase_22 AC 9 ms
8,192 KB
testcase_23 AC 3 ms
6,944 KB
testcase_24 AC 36 ms
21,248 KB
testcase_25 WA -
testcase_26 AC 59 ms
30,848 KB
testcase_27 AC 64 ms
31,104 KB
testcase_28 AC 61 ms
31,232 KB
testcase_29 AC 73 ms
29,440 KB
testcase_30 WA -
testcase_31 AC 32 ms
15,616 KB
testcase_32 AC 67 ms
31,232 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:9:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    9 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;
int N;
int A[3333],B[3333];
vector<int>D;
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++)
	{
		int d;cin>>d;D.push_back(d);
	}
	sort(D.begin(),D.end());
	reverse(D.begin(),D.end());
	for(int i=0;i<N;i++)for(int j=0;j<=N;j++)
	{
		int k=dp[i][j]-j;
		if(k<0)continue;
		if(j<N)
		{
			int nxt=A[j+1]+B[k];
			if(nxt>=D[i])
			{
				dp[i+1][j+1]=max(dp[i+1][j+1],dp[i][j]+1);
			}
			else
			{
				dp[i+1][j]=max(dp[i+1][j],dp[i][j]);
			}
		}
		if(k<N)
		{
			int nxt=A[j]+B[k+1];
			if(nxt>=D[i])
			{
				dp[i+1][j]=max(dp[i+1][j],dp[i][j]+1);
			}
			else
			{
				dp[i+1][j]=max(dp[i+1][j],dp[i][j]);
			}
		}
	}
	int ans=0;
	for(int i=0;i<=N;i++)for(int j=0;j<=N;j++)ans=max(ans,dp[i][j]);
	cout<<ans<<endl;
}
0