結果

問題 No.2434 RAKUTAN de RAKUTAN
ユーザー 沙耶花沙耶花
提出日時 2023-08-18 23:12:35
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 779 ms / 2,000 ms
コード長 1,329 bytes
コンパイル時間 4,169 ms
コンパイル使用メモリ 268,652 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-06 05:47:02
合計ジャッジ時間 8,990 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 4 ms
5,376 KB
testcase_04 AC 4 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 4 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 770 ms
5,376 KB
testcase_11 AC 779 ms
5,376 KB
testcase_12 AC 753 ms
5,376 KB
testcase_13 AC 773 ms
5,376 KB
testcase_14 AC 762 ms
5,376 KB
testcase_15 AC 5 ms
5,376 KB
testcase_16 AC 5 ms
5,376 KB
testcase_17 AC 5 ms
5,376 KB
testcase_18 AC 5 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 3 ms
5,376 KB
testcase_21 AC 3 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 1 ms
5,376 KB
testcase_26 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
using namespace atcoder;
using mint = modint998244353;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 4000000000000000001


int main(){
	
	int N,H,X;
	cin>>N>>H>>X;
	
	vector<pair<int,int>> t;
	rep(i,2){
		int a;
		cin>>a;
		rep(j,a){
			int pos;
			cin>>pos;
			t.emplace_back(pos,-i*2+1);
		}
	}
	sort(t.begin(),t.end());
	
	int aans = 0;
	if(t.size()>0 && t.back().first==N){
		aans += t.back().second;
		t.pop_back();
	}
	t.emplace_back(0,0);
	t.emplace_back(N,0);
	sort(t.begin(),t.end());
	{
		vector<int> D(t.size()-1);
		rep(i,t.size()-1){
			D[i] = t[i+1].first - t[i].first;
			D[i] = min(D[i],12);
		}
		rep(i,t.size()-1){
			t[i+1].first = t[i].first + D[i];
		}
	}
	
	N = t.back().first;
	H = min(N,H);
	vector<int> cost(N+10);
	rep(i,t.size()){
		cost[t[i].first] = t[i].second;
	}
	
	vector dp(X+5,vector<int>(H+1,-Inf32));
	dp[0][0] = 0;
	rep(i,N){
		dp.push_back(vector<int>(H+1,-Inf32));
		rep(j,H+1){
			dp[1][j] = max(dp[1][j],dp[0][j]+cost[i+1]);
			if(i+X<=N&&j!=H){
				dp[X][j+1] = max(dp[X][j+1],dp[0][j] + cost[i+X]);
			}
		}
		dp.erase(dp.begin());
	}
	int ans = -Inf32;
	rep(i,H+1)ans = max(ans,dp[0][i]);
	//cout<<ans<<' '<<aans<<endl;
	cout<<ans+aans<<endl;
	return 0;
}
0