結果

問題 No.2434 RAKUTAN de RAKUTAN
ユーザー 👑 potato167potato167
提出日時 2023-08-15 22:30:52
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 917 bytes
コンパイル時間 2,457 ms
コンパイル使用メモリ 211,216 KB
実行使用メモリ 61,312 KB
最終ジャッジ日時 2024-05-03 08:56:01
合計ジャッジ時間 3,829 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 WA -
testcase_04 AC 1 ms
5,376 KB
testcase_05 WA -
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 3 ms
5,376 KB
testcase_16 WA -
testcase_17 AC 3 ms
5,376 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 16 ms
5,376 KB
testcase_21 AC 17 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 WA -
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll = long long;
#define all(p) p.begin(),p.end()
#define rep(i,a,b) for(int i=(int)a;i<(int)b;i++)

int main(){
	int N,H,X;
	cin>>N>>H>>X;
	set<int> s;
	auto f=[&]()->vector<int>{
		int n;
		cin>>n;
		vector<int> p(n);
		rep(i,0,n){
			cin>>p[i];
			rep(k,1,X) if(p[i]-k>=0&&p[i]-k+X<=N) s.insert(p[i]-k);
		}
		return p;
	};
	auto p=f(),q=f();
	H=min(H,(int)p.size()+(int)q.size());
	vector<int> order;
	for(auto x:s) order.push_back(x);
	int L=order.size();
	vector dp(L+1,vector<int>(H+1));
	rep(i,0,L){
		int val=0;
		int to=i;
		while(to!=L&&order[i]+X>order[to]) to++;
		for(auto x:p) if(order[i]<x&&x<order[i]+X) val--;
		for(auto x:q) if(order[i]<x&&x<order[i]+X) val++;
		rep(j,0,H){
			dp[to][j+1]=max(dp[to][j+1],dp[i][j]+val);
			dp[i+1][j]=max(dp[i+1][j],dp[i][j]);
		}
	}
	int ans=dp[L][H];
	ans+=(int)p.size();
	ans-=(int)q.size();
	cout<<ans<<"\n";
}
0